addEllipse method

void addEllipse(
  1. Rect bounds
)

Adds an ellipse

Implementation

void addEllipse(Rect bounds) {
  startFigure();
  addArc(bounds, 0, 360);
  closeFigure();
}