ICanvas.Arc

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)
ParameterTypeDescription
xDoubleThe x-coordinate of the center of the arc.
yDoubleThe y-coordinate of the center of the arc.
radiusDoubleThe radius of the arc.
startAngleDoubleThe starting angle of the arc in radians.
endAngleDoubleThe ending angle of the arc in radians.

See Also


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)
ParameterTypeDescription
xDoubleThe x-coordinate of the center of the arc.
yDoubleThe y-coordinate of the center of the arc.
radiusDoubleThe radius of the arc.
startAngleDoubleThe starting angle of the arc in radians.
endAngleDoubleThe ending angle of the arc in radians.
counterclockwiseBooleanSpecifies whether the arc should be drawn counterclockwise.

See Also