[]
Convert an arc to Bezier curves.
public static PointF[] ArcToBezier(PointF start, PointF end, SizeF sz, double theta, bool clockwise)
Type | Name | Description |
---|---|---|
PointF | start | The start point. |
PointF | end | The end point. |
SizeF | sz | The x-radius and y-radius of the arc. |
double | theta | The rotation angle. |
bool | clockwise | The clockwise sweep direction or no. |
Type | Description |
---|---|
PointF[] | An array of triples points for Bezier curves. |