ICanvas.Ellipse

Ellipse(double, double, double, double, double, double, double)

Adds an ellipse to the current path.

public void Ellipse(double x, double y, double radiusX, double radiusY, double rotation, 
    double startAngle, double endAngle)
ParameterTypeDescription
xDoubleThe x-coordinate of the center of the ellipse.
yDoubleThe y-coordinate of the center of the ellipse.
radiusXDoubleThe x-radius of the ellipse.
radiusYDoubleThe y-radius of the ellipse.
rotationDoubleThe rotation of the ellipse in radians.
startAngleDoubleThe starting angle of the ellipse in radians.
endAngleDoubleThe ending angle of the ellipse in radians.

See Also


Ellipse(double, double, double, double, double, double, double, bool)

Adds an ellipse to the current path.

public void Ellipse(double x, double y, double radiusX, double radiusY, double rotation, 
    double startAngle, double endAngle, bool anticlockwise)
ParameterTypeDescription
xDoubleThe x-coordinate of the center of the ellipse.
yDoubleThe y-coordinate of the center of the ellipse.
radiusXDoubleThe x-radius of the ellipse.
radiusYDoubleThe y-radius of the ellipse.
rotationDoubleThe rotation of the ellipse in radians.
startAngleDoubleThe starting angle of the ellipse in radians.
endAngleDoubleThe ending angle of the ellipse in radians.
anticlockwiseBooleanSpecifies whether the ellipse should be drawn in the anticlockwise direction.

See Also