IPath.Ellipse

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)
ParameterTypeDescription
xSingleThe x-coordinate of the center of the ellipse.
ySingleThe y-coordinate of the center of the ellipse.
radiusXSingleThe radius of the ellipse along the x-axis.
radiusYSingleThe radius of the ellipse along the y-axis.
rotationSingleThe rotation angle of the ellipse in radians.
startAngleSingleThe starting angle of the arc in radians.
endAngleSingleThe ending angle of the arc in radians.

See Also


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)
ParameterTypeDescription
xSingleThe x-coordinate of the center of the ellipse.
ySingleThe y-coordinate of the center of the ellipse.
radiusXSingleThe radius of the ellipse along the x-axis.
radiusYSingleThe radius of the ellipse along the y-axis.
rotationSingleThe rotation angle of the ellipse in radians.
startAngleSingleThe starting angle of the arc in radians.
endAngleSingleThe ending angle of the arc in radians.
anticlockwiseBooleanSpecifies whether the arc should be drawn in the anticlockwise direction.

See Also