B
sieh dir folgendes an, und es sollte klar werden ...
do_circle(screen,SCREEN_W/2,SCREEN_H/2,SCREEN_H/2-10,rand()%15,test_funktion);
void test_funktion(BITMAP *bmp,int x, int y, int color)
{
static int i=3;
if(i%3==0)
line(bmp,x,y,SCREEN_W/2,SCREEN_H/2,color);
i++;
}