I wonder what is the 3rd vector (the 3rd row) in the following code?
gluLookAt( -512, -384, 700,
512, 384, 0,
0.0f, 1.0f, 0.0f);
It is strange...
Type: Posts; User: winterheat
I wonder what is the 3rd vector (the 3rd row) in the following code?
gluLookAt( -512, -384, 700,
512, 384, 0,
0.0f, 1.0f, 0.0f);
It is strange...
I am trying LookAt in OpenGL ES,
gluLookAt(512, 384, 2000,
512, 384, 0,
0.0f, 1.0f, 0.0f);
The second row is the Target's position... so I...