You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doesn't adjust for the elliptic behavior. This is not isolated new case.
In fact if you the manual you'll see lots examples.
Graphics[{Circle[{0, 0}, 1]}] (* This one is subtle. The top and bottom boundary is truncated. *)
Table[
Graphics[
{Circle[],
Arrow[Table[{Cos[phi],Sin[phi]},{phi,0,2*Pi,Pi/2}],{d, d}]
}],
{d,0,2,0.5}] (* Probably we need to adjust for Table *)
Graphics[
{Arrowheads[
Table[
{0.04, i/10, Graphics[Disk []]},{i,1,10}
] ],
Arrow[{{0, 0}, {6, 5}, {1, -3}, {-2, 2}}
]}
]
The text was updated successfully, but these errors were encountered:
Recently in #1498 Arcs were extended to handle elipses. However calculating their proper size is still missing.
In particular the extent calculation for:
doesn't adjust for the elliptic behavior. This is not isolated new case.
In fact if you the manual you'll see lots examples.
The text was updated successfully, but these errors were encountered: