mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-22 16:32:13 -07:00
Introduce a front-end function to draw circles.
[originally from svn r5991]
This commit is contained in:
@ -137,6 +137,8 @@ void draw_rect(frontend *fe, int x, int y, int w, int h, int colour);
|
||||
void draw_line(frontend *fe, int x1, int y1, int x2, int y2, int colour);
|
||||
void draw_polygon(frontend *fe, int *coords, int npoints,
|
||||
int fill, int colour);
|
||||
void draw_circle(frontend *fe, int cx, int cy, int radius,
|
||||
int fill, int colour);
|
||||
void clip(frontend *fe, int x, int y, int w, int h);
|
||||
void unclip(frontend *fe);
|
||||
void start_draw(frontend *fe);
|
||||
|
Reference in New Issue
Block a user