ellipse method

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

Draw an ellipse at x and y

Implementation

GraphicsCommandEllipse ellipse(num x, num y, num width, num height) {
  final command = GraphicsCommandEllipse(x, y, width, height);
  addCommand(command);
  return command;
}