arcElliptical method

GraphicsCommandArcElliptical arcElliptical(
  1. double x,
  2. double y,
  3. double radiusX,
  4. double radiusY,
  5. double rotation,
  6. double startAngle,
  7. double endAngle, [
  8. bool antiClockwise = false,
])

Draw an arc at x and y.

Implementation

GraphicsCommandArcElliptical arcElliptical(double x, double y, double radiusX,
    double radiusY, double rotation, double startAngle, double endAngle,
    [bool antiClockwise = false]) {
  final command = GraphicsCommandArcElliptical(
      x, y, radiusX, radiusY, rotation, startAngle, endAngle, antiClockwise);
  addCommand(command);
  return command;
}