I am trying to make a free traveling camera in a 3D space. And the glulookat function looks like something below:
gluLookAt(g_eye[0],g_eye[1],g_eye[2],
g_look[0],g_look[1],g_look[2],
0,1.0,0
);
First three coordinates are just camera location. Last three coordinates are about camera's rotation.
Seems like the Second three coordinates are about where the camera is looking at.
But I don't really understand why we need second three coordinates. How is that going to effect our view?
For example: if the camera starts at origin, then the camera rotate to right by 30 degree, then translate by 10 in -Z direction. Then I know where is the camera positioned now. But what should I put into the second three coordinates?
Camera at origin

turn right by some degree

move forward


