mirror of
https://github.com/GayPizzaSpecifications/padlab.git
synced 2025-08-04 05:31:33 +00:00
Improve drawing with digital zone highligts, futher colour tweaks, & thicker lines in GL.
It's also now no longer possible to trigger NW & SE angles when digital is set to 4 direction.
This commit is contained in:
6
draw.h
6
draw.h
@ -67,6 +67,12 @@ void DrawCircle(int x, int y, int r);
|
||||
// Can be used to draw regular convex polygons such as an octagon.
|
||||
void DrawCircleSteps(int x, int y, int r, int steps);
|
||||
|
||||
// Draw an arc.
|
||||
void DrawArc(int x, int y, int r, int startAng, int endAng);
|
||||
|
||||
// Draw an arc with a discrete number of steps.
|
||||
void DrawArcSteps(int x, int y, int r, int startAng, int endAng, int steps);
|
||||
|
||||
// Present the current buffer to the screen.
|
||||
void DrawPresent(void);
|
||||
|
||||
|
Reference in New Issue
Block a user