[Solved] rotate 5 circle problem [duplicate]
You should call glutSwapBuffers only once in the drawing function. For an animation you have to call glutPostRedisplay, to ensure that the display function will be called again. The glBegin and glEnd calls only have to be called once per circle. In the for loop you just supply vertices with calls to glVertex. To simplify … Read more