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:
2022-11-18 05:44:30 +11:00
parent 0cf89816cd
commit 4255841a6b
9 changed files with 177 additions and 42 deletions

6
draw.h
View File

@ -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);