ICanvas.Arc
Contents
[
Hide
]Arc(double, double, double, double, double)
Adds an arc to the current path.
public void Arc(double x, double y, double radius, double startAngle, double endAngle)
Parameter | Type | Description |
---|---|---|
x | Double | The x-coordinate of the center of the arc. |
y | Double | The y-coordinate of the center of the arc. |
radius | Double | The radius of the arc. |
startAngle | Double | The starting angle of the arc in radians. |
endAngle | Double | The ending angle of the arc in radians. |
See Also
- interface ICanvas
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Arc(double, double, double, double, double, bool)
Adds an arc to the current path.
public void Arc(double x, double y, double radius, double startAngle, double endAngle,
bool counterclockwise)
Parameter | Type | Description |
---|---|---|
x | Double | The x-coordinate of the center of the arc. |
y | Double | The y-coordinate of the center of the arc. |
radius | Double | The radius of the arc. |
startAngle | Double | The starting angle of the arc in radians. |
endAngle | Double | The ending angle of the arc in radians. |
counterclockwise | Boolean | Specifies whether the arc should be drawn counterclockwise. |
See Also
- interface ICanvas
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG