blood.angel
03-21-2002, 12:33 PM
Is it possible to contain this command within a for loop?
eg
for(count = 0; count < 90; count++)
{
do_stuff();
draw_scene();
glutPostRedisplay();
}
clearup();
eg
for(count = 0; count < 90; count++)
{
do_stuff();
draw_scene();
glutPostRedisplay();
}
clearup();