GraphicsCommandEllipse constructor

GraphicsCommandEllipse(
  1. num x,
  2. num y,
  3. num width,
  4. num height
)

Implementation

GraphicsCommandEllipse(num x, num y, num width, num height)
    : _x = x.toDouble(),
      _y = y.toDouble(),
      _width = width.toDouble(),
      _height = height.toDouble();