NAME ==== vg_draw_line() - draw a line SYNOPSIS ======== void vg_draw_line(bitmap * bmp, int x1, int y1, int x2, int y2, int col) DESCRIPTION =========== Draws a line. bmp is the bitmap, into which is drawed, or NULL for the window. x1 and y1 are the destination coordinates for the begin of the line. x2 and y2 are the destination coordinates for the end of the line. col is the color-index for the line. RETURN VALUE ============ No value is returned. SEE ALSO ======== Index Understanding drawing vg_draw_text() vg_draw_pixel() vg_draw_box() vg_draw_circle() vg_draw_fillout()