GraphicsCommandEllipse ellipse(num x, num y, num width, num height)

Draw an ellipse at x and y

Source

GraphicsCommandEllipse ellipse(num x, num y, num width, num height) {
  var command = new GraphicsCommandEllipse(x, y, width, height);
  this.addCommand(command);
  return command;
}