NAME ==== vg_draw_circle() - draw a circle SYNOPSIS ======== void vg_draw_circle(bitmap * bmp, int x, int y, int r, int col, int fill) DESCRIPTION =========== Draws a circle, regarding to fill filled or not filled. bmp is the bitmap, into which is drawed, or NULL for the window. x and y are the destination coordinates: middle of the circle. r is the radius in pixels. col is the color-index for the circle. fill is 0=not filled or 1=filled. RETURN VALUE ============ No value is returned. SEE ALSO ======== Index Understanding drawing vg_draw_text() vg_draw_pixel() vg_draw_line() vg_draw_box() vg_draw_fillout()