Lets say I do have the following set up :
glBegin(GL_TRIANGLE_STRIP);
glTexCoord2f(0,0); glVertex3f(-10, 0, 0);
glTexCoord2f(1,0); glVertex3f(10, 0, 0);
glTexCoord2f(0,1); glVertex3f(-10, 0, 5);
glTexCoord2f(1,1); glVertex3f(10, 0, 5);
glEnd();
And I do the following
gluLookAt(0,0,10, 0,5,0, 0,1,0);
I should end up with a "virtual world" like the one below, right ?
For a strange reason, nothing appears on screen and I can't figure out why. Any idea ?