vg4->window->draw_circle()
Draw a circle onto window.
SYNTAX
void
vg4->window->draw_circle(int xm, int ym, int radius, int color, VG_BOOL fill)
FUNCTION PARAMETERS
xm | x-coordinate of center |
ym | y-coordinate of center |
radius | Radius of circle |
color | Circle color: one of VG_COLORS or from VG_COLOR_RGB() |
fill | Whether to fill circle |
DESCRIPTION
Draw a circle onto window.
The modified window contents will not be seen unless calling vg4->window->flush().
SEE ALSO