absarc method

Path absarc(
  1. double aX,
  2. double aY,
  3. double aRadius,
  4. double aStartAngle,
  5. double aEndAngle, [
  6. bool? aClockwise,
])

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;
}