GraphicsCommandArcElliptical constructor

GraphicsCommandArcElliptical(
  1. num x,
  2. num y,
  3. num radiusX,
  4. num radiusY,
  5. num rotation,
  6. num startAngle,
  7. num endAngle,
  8. bool antiClockwise,
)

Implementation

GraphicsCommandArcElliptical(num x, num y, num radiusX, num radiusY,
    num rotation, num startAngle, num endAngle, bool antiClockwise)
    : _x = x.toDouble(),
      _y = y.toDouble(),
      _radiusX = radiusX.toDouble(),
      _radiusY = radiusY.toDouble(),
      _rotation = rotation.toDouble(),
      _startAngle = startAngle.toDouble(),
      _endAngle = endAngle.toDouble(),
      _antiClockwise = antiClockwise;