Format of svg arc (arc in xaml have same args):
(rx ry x-axis-rotation large-arc-flag sweep-flag x y)
Description:
Draws an elliptical arc from the current point to (x, y). The size and orientation of the ellipse are defined by two radii (rx, ry) and an x-axis-rotation, which indicates how the ellipse as a whole is rotated relative to the current coordinate system. The center (cx, cy) of the ellipse is calculated automatically to satisfy the constraints imposed by the other parameters. large-arc-flag and sweep-flag contribute to the automatic calculations and help determine how the arc is drawn.
I need to calc all point of it arc (with some step, of course). How I can do it? I would like to code on C# or on Java.
Bresenham algorithm is invented for point-by-point drawing.
Some code found for rotated ellipse (wayback machine)
Added: How to transform zero-centered ellipse to needed implicit form (A,B,C,D,E,F)
Checked for rx=100, ry=60, fi=Pi/6:
One more step: Delphi function to obtain implicit form for an arbitrary ellipse. I hope that code is understandable (Sqr(x) = x*x)