0
votes
1answer
29 views

Interpreting object space coordinates of gluLookAt

I am trying to build a 3D scene here and read about viewing transformations with gluLookAt(); in OpenGL. The coordinates of gluLookAt() as I understand are in object space coordinates. I tried a small ...
0
votes
1answer
131 views

OpenGL(JOGL) glu.gluLookAt mirroring world

I recently started working with/trying to learn OpenGL through JOGL and have been getting some very weird issues. I am using the glu#gluLookAt method to view the world. i am calculating the point that ...
1
vote
1answer
378 views

OpenGL 3D camera gluLookAt

I'm trying to set up a 3D camera with the gluLookAt method. So I have got a 10x10x10 cube and now i want to move the camera inside that cube. I have something like that: gluLookAt( ...
0
votes
1answer
248 views

Discontinuity in gluLookAt

This is how I calculate my line of sight vector and the up vector. ly = sin(inclination); lx = cos(inclination)*sin(azimuth); lz = cos(inclination)*cos(azimuth); uy = sin(inclination ...