draw_ellipse
Draw an ellipse centered at specified coordinates with given radii. Supports filled or outlined ellipses with optional antialias on RGB sprites.
Instructions
Draw an ellipse centred at (center_x, center_y) with the given radii.
For a circle, use the same value for radius_x and radius_y. filled=False
draws a 1px outline. antialias smooths a *filled* ellipse with sub-pixel
coverage (RGB sprites only; ignored otherwise).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | Yes | ||
| frame | No | ||
| layer | No | ||
| filled | No | ||
| center_x | Yes | ||
| center_y | Yes | ||
| filename | Yes | ||
| radius_x | Yes | ||
| radius_y | Yes | ||
| antialias | No |