arc method
Contents
[
Hide
]arc
Adds an arc to the current path.
def arc(self, x, y, radius, start_angle, end_angle):
...
Parameter | Type | Description |
---|---|---|
x | float | The x-coordinate of the center of the arc. |
y | float | The y-coordinate of the center of the arc. |
radius | float | The radius of the arc. |
start_angle | float | The starting angle of the arc in radians. |
end_angle | float | The ending angle of the arc in radians. |
arc
Adds an arc to the current path.
def arc(self, x, y, radius, start_angle, end_angle, counterclockwise):
...
Parameter | Type | Description |
---|---|---|
x | float | The x-coordinate of the center of the arc. |
y | float | The y-coordinate of the center of the arc. |
radius | float | The radius of the arc. |
start_angle | float | The starting angle of the arc in radians. |
end_angle | float | The ending angle of the arc in radians. |
counterclockwise | bool | Specifies whether the arc should be drawn counterclockwise. |
See Also
- module
aspose.svg.rendering
- class
ICanvas