The glulookat tag has no wiki summary.
2
votes
4answers
360 views
OpenGL gluLookAt() not working as intended
I am making a rollercoaster inside of a skybox in OpenGL, and without much background on it's functions or computer graphics it is proving to be very difficult. I drew a rollercoaster using ...
1
vote
1answer
58 views
how can we make spot lights
i need to draw street lights, but it is illuminating the entire environment, i couldnt make it seem like a spot light. The code below is the one i tried
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0) ...
0
votes
1answer
102 views
OpenGL using gluLookat()
I need help with gluLookAt(). I'm trying to use it after my call to glOrtho() (which I believe is correct) in an attempt to make a view down the z axis from a slightly elevated view on the y axis. ...
0
votes
1answer
85 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 ...
0
votes
0answers
114 views
gluLookAt not affecting gluQuadric objects [closed]
In my C++ program, I am using a custom Camera class, which internally uses gluLookAt to move the "camera". This has worked fairly well, but I recently hit a bit of a snag: Any gluQuadric object (those ...