IPath.Arc

Arc(float, float, float, float, float)

Adds a circular arc to the path.

public void Arc(float x, float y, float radius, float startAngle, float endAngle)
ParameterTypeDescription
xSingleThe x-coordinate of the center of the arc.
ySingleThe y-coordinate of the center of the arc.
radiusSingleThe radius of the arc.
startAngleSingleThe starting angle of the arc in radians.
endAngleSingleThe ending angle of the arc in radians.

See Also


Arc(float, float, float, float, float, bool)

Adds a circular arc to the path.

public void Arc(float x, float y, float radius, float startAngle, float endAngle, 
    bool counterclockwise)
ParameterTypeDescription
xSingleThe x-coordinate of the center of the arc.
ySingleThe y-coordinate of the center of the arc.
radiusSingleThe radius of the arc.
startAngleSingleThe starting angle of the arc in radians.
endAngleSingleThe ending angle of the arc in radians.
counterclockwiseBooleanSpecifies whether the arc should be drawn counterclockwise.

See Also