[]
Convert an arc to Bezier curves.
public static PointF[] ArcToBezier(double cx, double cy, double rx, double ry, double angle, double sweep)
Type | Name | Description |
---|---|---|
double | cx | X-coordinate of ellipse center. |
double | cy | Y-coordinate of ellipse center. |
double | rx | x-radius. |
double | ry | y-radius. |
double | angle | Start angle in degrees. |
double | sweep | Sweep direction in degrees. |
Type | Description |
---|---|
PointF[] | An array of triples points for Bezier curves. |