Please contact us if you have any trouble resetting your password.
is there anyway to slow down the animation speed using glutIdleFunc function?
void collision() { screen += 0.1667f; if (screen >= 1.0f) { screen = 1.0f; glutIdleFunc(NULL); } glutPostRedisplay(); }
I have solved my previous problem.