IPath.Ellipse
Contents
[
Hide
]Ellipse(float, float, float, float, float, float, float)
Adds an elliptical arc to the path.
public void Ellipse(float x, float y, float radiusX, float radiusY, float rotation,
float startAngle, float endAngle)
Parameter | Type | Description |
---|---|---|
x | Single | The x-coordinate of the center of the ellipse. |
y | Single | The y-coordinate of the center of the ellipse. |
radiusX | Single | The radius of the ellipse along the x-axis. |
radiusY | Single | The radius of the ellipse along the y-axis. |
rotation | Single | The rotation angle of the ellipse in radians. |
startAngle | Single | The starting angle of the arc in radians. |
endAngle | Single | The ending angle of the arc in radians. |
See Also
- interface IPath
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
Ellipse(float, float, float, float, float, float, float, bool)
Adds an elliptical arc to the path.
public void Ellipse(float x, float y, float radiusX, float radiusY, float rotation,
float startAngle, float endAngle, bool anticlockwise)
Parameter | Type | Description |
---|---|---|
x | Single | The x-coordinate of the center of the ellipse. |
y | Single | The y-coordinate of the center of the ellipse. |
radiusX | Single | The radius of the ellipse along the x-axis. |
radiusY | Single | The radius of the ellipse along the y-axis. |
rotation | Single | The rotation angle of the ellipse in radians. |
startAngle | Single | The starting angle of the arc in radians. |
endAngle | Single | The ending angle of the arc in radians. |
anticlockwise | Boolean | Specifies whether the arc should be drawn in the anticlockwise direction. |
See Also
- interface IPath
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG