gluLookAt is a function in the OpenGL Utility Library (GLU) that defines a view transformation

learn more… | top users | synonyms

4
votes
3answers
2k views

gluLookAt() best usage, on GL_PROJECTION matrix or on GL_MODELVIEW matrix

The OpenGL documentation say that the gluLookAt() calls should be done on the GL_MODELVIEW matrix: http://www.opengl.org/resources/faq/technical/viewing.htm In fact the docs link to an article which ...
4
votes
2answers
1k views

How does gluLookAt work?

From my understanding, gluLookAt( eye_x, eye_y, eye_z, center_x, center_y, center_z, up_x, up_y, up_z ); is equivalent to: glRotatef(B, 0.0, 0.0, 1.0); ...
4
votes
3answers
630 views

OpenGL Camera - Move the camera without it snapping back when using SetCursorPos(x,y);?

I have a problem when I try to update my camera. I want to change the pitch and yaw of the the camera (where its looking) via the mouse But I want the mouse to stay positioned to the center of the ...
3
votes
1answer
189 views

Clarification regarding use of OpenGL modelview matrix and matrix transformation

I've been able to use modelview matrix and functions like glTranslatef() and gluLookAt() to transform an object or the perspective of the entire scene, but when I try to do both I run into problems. ...
2
votes
4answers
2k 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 ...
2
votes
1answer
295 views

OpenGL 3 (LWJGL) LookAt Matrix Confusion

I'm learning OpenGL 3 using LWJGL. I have tried to implement an equivalent to gluLookAt(), and although it works am I somewhat confused as to why. I confess to just copying this code from various ...
2
votes
1answer
759 views

Rotating around a sphere using OpenGL and gluLookAt

Alright, so I'm trying to click and drag to rotate around an object using C++ and OpenGL. The way I have it is to use gluLookAt centered at the origin and I'm getting coordinates for the eye by using ...
2
votes
1answer
211 views

How to determine the normal vector to the plane of sight in OpenGL?

I'm working on a kind of camera orbiting function for an application and I need to know the normal vector to the plane of sight. I think it might be the same as the line of sight vector, is it? I ...
1
vote
2answers
123 views

The LookAt target location doesn't matter if it is z = 0 or z = 1000 or -1000?

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 wonder, if I change the z ...
1
vote
1answer
67 views

gluLookAt glitch

I drew an object consisting of 2 tangent spheres, which is itself tangent to a wall (schema below). Using gluLookAt(), I set the camera in x point (first sphere center), looking to y point (second ...
1
vote
1answer
693 views

gluPerspective, glViewport, gluLookAt and the GL_PROJECTION and GL_MODELVIEW Matricies

I want to use 'gluPerspective', 'glViewport' and 'gluLookAt' to manipulate my camera and screen. Which functions to I apply to which matrix mode? And in what order should I / must I use them? For ...
1
vote
2answers
235 views

OpenGL in Qt doesn't draw red square

I'm trying to use the QGLWidget to use OpenGL in a Qt application. I made a subclass of QGLWidget etc., and thought I'd test if it works. However, the following code is not working as I expected it ...
1
vote
1answer
194 views

How to get the projection plane in OpenGL

I use the gluPerspective and glLookAt to set my projection matrix and view matrix. If I want to get the coordinate of the eye, it's the first three arguments in the gluLookAt, right? However, now I ...
1
vote
1answer
266 views

OpenGL Android: X axis is mysteriously flipped

I am displaying a quad in a pseudo-2D canvas via OpenGL. To do so, I use orthographic projection via: gl.glMatrixMode(GL10.GL_PROJECTION); gl.glLoadIdentity(); gl.glOrthof(-ratio, ratio, -1, 1, 0, ...
1
vote
1answer
169 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) ...
1
vote
1answer
358 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( ...
1
vote
1answer
946 views

OpenGL FPS Camera using gluLookAt()

So, I'm attempting to create an FPS style camera to explore my scene with, and it seems to be working fine. There is no way of changing the pitch of the camera at the moment. I am trying to create a ...
1
vote
2answers
46 views

Does gluLookAt() have a limit on smallest argument size?

I have an OpenGL program which works when I call this: gluLookAt(0.1,0.1,0.1, 0,0,0, 0,0.1,0); ... but not when I call this: gluLookAt(0.01,0.01,0.01, 0,0,0, 0,0.01,0); (In the latter case, a ...
1
vote
1answer
788 views

gluLookAt vectors and FPS-style camera

I am attempting to implemented an FPS-style camera by updating three vectors: EYE, DIR, UP. These vectors are the same that are used by gluLookAt (since gluLookAt is specified by the position of the ...
1
vote
0answers
136 views

glu.LookAt for tilted overhead camera with arbitrary vertical axis orientation

[Edited 09/23/12] Imagine FPS controls (strafe, turn) from a top-down perspective. Now imagine when the player turns the entire screen rotates so they're always facing the top of the monitor. Now ...
1
vote
2answers
430 views

setting up an opengl perspective projection

I am having an issue setting up the viewing projection. I am drawing a cube with the vertices (0, 0, 0) (0, 0, 1) (0, 1, 1) (0, 1, 0) (1, 0, 0) (1, 1, 0) (1, 1, 1) and (1, 0, 1). This is how I am ...
0
votes
4answers
2k views

What exactly is the UP vector in OpenGL's LookAt function?

this is related to The LookAt target location doesn't matter if it is z = 0 or z = 1000 or -1000? I tried gluLookAt(512, 384, 2000, 512, 384, 0, 0.0f, 1.0f, ...
0
votes
1answer
171 views

Why isn't this square in the middle of the screen?

I wrote some code, expecting to see a square in the middle of the screen, instead the square appears higher up, in some aspect ratios near the top of the screen, and slightly to the left. With ...
0
votes
1answer
854 views

OpenGL ES: glOrtho() shows object, but gluPerspective() doesn't

I am showing a textured sqad, centered around [0,0,-10], width and height = 10000. The camera is positioned at [0,0,0] and looks down the negative z-axis (eyepoint=[0,0,0], center=[0,0,-1]): ...
0
votes
1answer
222 views

gluLookAt and MODELVIEW MATRIX

I feel like I understand the usage of the modelview matrix and gluLookAt. That is, by declaring gluLookAt(ex,ey,ez,lx,ly,lz,ux,uy,uz), one can easily set up a way to look at a certain point directly. ...
0
votes
1answer
260 views

OpenGL window cuts off modelview

I'm programming a billiards game in C++ with Qt and OpenGL (more specific, the QGLWidget). I know my way around OpenGL somewhat, but not too much of a professional. What I did: create a Qt app window ...
0
votes
1answer
246 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
1answer
26 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
24 views

Loading ModelViewMatrix using glulookat

I have defined a matrix that contains the position and orientation of the camera similar to the GL_MODELVIEW matrix: (m3 = 0; m7 = 0; m11 = 0; m15 = 1) I'm trying to load this data into the ...
0
votes
0answers
61 views

OpenGL scenegraph gluLookAt issue

I'm working with a scene graph setup that I have made and I have Noticed a strange issue regarding the camera. When the camera is on the origin looking into 0,0,-1 there is no issue, but if i move ...
0
votes
0answers
28 views

Create perspective from bottom up without skewing z plane ?

I have got a cube in my scene which I want to see slightly from the bottom without skewing the z-plane. My object's center is located at 0,0,0. I would like to achieve this : Instead I get ...
0
votes
3answers
670 views

OpenGL - Rotating around a cube using gluLookAt rotates very quickly

I'm trying to move around a cube centered at the origin using gluLookAt instead of performing the R*T transformation directly on the object. At first, I was not sure how to do this problem. Then I ...
0
votes
1answer
137 views

Changing camera position in 2D game OpenGL

I'm beginner in making games in OpenGL. I drew a map (this is world, there player can move) and now I want to do, that camera follows the player (player is in center of the screen). I've done ...
0
votes
1answer
341 views

Rotate camera NOT scene without gluLookAt

I'm created a grid to represent ground to walk on. I've got my arrow keys linked up to rotate/move the view: switch(currentKey) { case sf::Key::Up: z_trans+=1; ...
0
votes
1answer
197 views

Moving an object along a predefined path

A couple of friends and I are trying to code a small animated segment. So, we decided that a good and still somewhat simple proyect would be to make some kind of horror house tour, in which the ...
0
votes
2answers
447 views

Android OpenGL works on emulator but not phone

I have the following code for the Renderer: package hello.project; import javax.microedition.khronos.egl.EGLConfig; import javax.microedition.khronos.opengles.GL10; import android.content.Context; ...
0
votes
1answer
96 views

glulookat “resets” after movement (with android)

here's my problem: I'm making a pool game in android and I want to make the camera rotate freely around the center of the table. The thing is that when I stop my movement it looks like the glulookat ...
0
votes
1answer
242 views

LookAt Implementation Misbehaviors

I'm looking forward to implement a LookAt( forward, up ) method where: Vector3 forward = eyePosition - targetPosition; Vector3 up; I've seen some implementations over the web, but analizing the ...
0
votes
2answers
1k views

OpenGL — how to move the scene in response to mouse input using gluLookAt

I'm using OpenGL in Qt through the QGLWidget, and I'm trying to implement some basic mouse and keyboard-driven interaction. So for instance, the keyboard arrow keys will be used to "pan" the scene, ...
0
votes
1answer
999 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
0answers
434 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 ...
0
votes
1answer
126 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 ...
-2
votes
1answer
190 views

OpenGL perspective projection and camera location

I am rendering a scene with some map image in OpenGL and using lat, lon of the map as coordinates directly. So my scene does not start at 0,0 and goes up to width, height. Although I can see my ...
-3
votes
2answers
99 views

Why in OpenGL's LookAt, if our face is facing almost up the sky, we can still see things right in front of us? [duplicate]

Possible Duplicate: What exactly is the UP vector in OpenGL's LookAt function? This is related to: What exactly is the UP vector in OpenGL's LookAt function? If the call is: ...