arc_to method
arc_to
Adds an arc to the current path, connecting the previous point to the start point of the arc with a straight line.
def arc_to(self, x1, y1, x2, y2, radius):
...
Parameter | Type | Description |
---|---|---|
x1 | float | The x-coordinate of the first arc point. |
y1 | float | The y-coordinate of the first arc point. |
x2 | float | The x-coordinate of the second arc point. |
y2 | float | The y-coordinate of the second arc point. |
radius | float | The radius of the arc. |
See Also
- module
aspose.svg.rendering
- class
ICanvas