GraphicsPath.AddArc
Contents
[
Hide
]AddArc(RectangleF, float, float)
Appends an elliptical arc to the current figure.
public void AddArc(RectangleF rect, float startAngle, float sweepAngle)
Parameter | Type | Description |
---|---|---|
rect | RectangleF | A RectangleF that represents the rectangular bounds of the ellipse from which the arc is taken. |
startAngle | Single | The starting angle of the arc, measured in degrees clockwise from the x-axis. |
sweepAngle | Single | The angle between startAngle and the end of the arc. |
See Also
- struct RectangleF
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common
AddArc(float, float, float, float, float, float)
Appends an elliptical arc to the current figure.
public void AddArc(float x, float y, float width, float height, float startAngle, float sweepAngle)
Parameter | Type | Description |
---|---|---|
x | Single | The x coordinate. |
y | Single | The y coordinate. |
width | Single | The width. |
height | Single | The height. |
startAngle | Single | The start angle. |
sweepAngle | Single | The sweep angle. |
See Also
- class GraphicsPath
- namespace Aspose.Drawing.Drawing2D
- assembly Aspose.Drawing.Common