absarc method
aX, aY -- The absolute center of the arc.
aRadius -- The radius of the arc.
aStartAngle -- The start angle in radians.
aEndAngle -- The end angle in radians.
aClockwise -- Sweep the arc clockwise. Defaults to false.
Adds an absolutely positioned EllipseCurve to the path.
Implementation
Path absarc(double aX, double aY, double aRadius, double aStartAngle, double aEndAngle, [bool? aClockwise]) {
absellipse(
aX, aY, aRadius, aRadius, aStartAngle, aEndAngle, aClockwise);
return this;
}