absellipse method
Shape
absellipse(
- double aX,
- double aY,
- double xRadius,
- double yRadius,
- double aStartAngle,
- double aEndAngle, [
- bool? aClockwise,
- double? aRotation,
override
aX
, aY
-- The absolute center of the ellipse.
xRadius
-- The radius of the ellipse in the x axis.
yRadius
-- The radius of the ellipse in the y axis.
aStartAngle
-- The start angle in radians.
aEndAngle
-- The end angle in radians.
aClockwise
-- Sweep the ellipse clockwise. Defaults to false.
aRotation
-- The rotation angle of the ellipse in radians, counterclockwise
from the positive X axis. Optional, defaults to 0
.
Adds an absolutely positioned EllipseCurve to the path.
Implementation
@override
Shape absellipse(double aX, double aY, double xRadius, double yRadius, double aStartAngle, double aEndAngle, [bool? aClockwise, double? aRotation]) {
super.absellipse(aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise, aRotation);
return this;
}