PathBuilder.A

PathBuilder.A method

Adds an ‘Elliptical Arc Curve’ command to the path data.

public PathBuilder A(double r1, double r2, double angle, bool largeArcFlag, bool sweepFlag, 
    double x, double y)
ParameterTypeDescription
r1DoubleThe x-radius of the ellipse.
r2DoubleThe y-radius of the ellipse.
angleDoubleThe rotation angle of the ellipse in degrees.
largeArcFlagBooleanFlag indicating if the arc should be greater than or equal to 180 degrees.
sweepFlagBooleanFlag indicating if the arc should be drawn in a positive angle direction.
xDoubleThe x-coordinate of the end point of the arc.
yDoubleThe y-coordinate of the end point of the arc.

Return Value

The current PathBuilder instance.

See Also