GraphicsCommandArc constructor

GraphicsCommandArc(
  1. num x,
  2. num y,
  3. num radius,
  4. num startAngle,
  5. num endAngle,
  6. bool antiClockwise,
)

Implementation

GraphicsCommandArc(num x, num y, num radius, num startAngle, num endAngle,
    bool antiClockwise)
    : _x = x.toDouble(),
      _y = y.toDouble(),
      _radius = radius.toDouble(),
      _startAngle = startAngle.toDouble(),
      _endAngle = endAngle.toDouble(),
      _antiClockwise = antiClockwise;