Problem | You got | Out of |
---|---|---|
1 | 20 | |
2 | 20 | |
3 | 20 | |
4 | 20 | |
5 | 20 | |
TOTAL | 100 |
glOrtho(-1, 1, -1, 1, -1, 1)
does not generate
the default projection. Give the glOrtho call that does.gluLookAt(10*cos(u), 0.5, 10*sin(u), 0.0, 0.0, 0.0, 0.0, 1.0, 0.0);This works fine. Then the student tries to get fancy and changes the animation loop to
gluLookAt(0, 10*cos(u), 10*sin(u), 0.0, 0.0, 0.0, 0.0, 1.0, 0.0);What problems could occur here?