absarc method

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

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

@override
Shape absarc(double aX, double aY, double aRadius, double aStartAngle, double aEndAngle, [bool? aClockwise]) {
  super.absarc(aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise);
  return this;
}