ellip_{empt/full}: draw empty/full ellipse #4

Open
opened 2026-08-30 10:56:49 +02:00 by ShatteredMINT · 1 comment
Owner

Description

Draws the outline of or a solid ellipse

ABI suggestion

r1 = colour
r2 = x size
r3 = y size
r4 = x position
r5 = y position

no result
## Description Draws the outline of or a solid ellipse ## ABI suggestion ```asm r1 = colour r2 = x size r3 = y size r4 = x position r5 = y position no result ```
ShatteredMINT added the enhancement label 2026-08-30 10:56:49 +02:00
ShatteredMINT added this to the Graphics API project 2026-08-30 10:56:49 +02:00
ShatteredMINT moved this to accepted in Graphics API on 2026-08-30 11:01:36 +02:00
Contributor

Algorithm suggestion: Bresenham's line algorithm.
It allows drawing pixel-by-pixel of a straight line.
It's extension, the Midpoint circle algorithm can be used to draw circles and ellipses.

Algorithm suggestion: [Bresenham's line algorithm](https://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm). It allows drawing pixel-by-pixel of a straight line. It's extension, the [Midpoint circle algorithm](https://en.wikipedia.org/wiki/Midpoint_circle_algorithm) can be used to draw circles and ellipses.
Sign in to join this conversation.
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: TCShenanigans/symphony_stdlib#4