Tagged Questions
-1
votes
3answers
44 views
translate rotate and scale object after drawing in opengl? [closed]
I am writing a drawing program that it is simple paint.
I want to translate or rotate or scale last object in the scene similar ms paint.
For this what i can do?
0
votes
2answers
43 views
opengl - Rotating around a sphere using vectors and NOT glulookat
I'm having an issue with drawing a model and rotating it using the mouse,
I'm pretty sure there's a problem with the mathematics but not sure .
The object just rotates in a weird way.
I want the ...
0
votes
2answers
51 views
Moon orbit in relation to sun
I can get the Earth to rotate around the Sun and around its own axis, but I can't get the Moon to rotate around the Earth. (I just want it to circulate around it, I don't need to calculate gravity or ...
2
votes
2answers
37 views
Rotating an object around a fixed point in opengl
I have a problem with this openGL code:
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glPushMatrix(); // put current matrix on stack
//glTranslatef(0.0f, 0.0f, 0.0f);
//glTranslatef(-4*1.5, 0.0, ...
0
votes
1answer
25 views
openGL move forward with rotation works for 0 degrees, backwards for 90 degrees
I am trying to move my world in reference to a character. It works if the degree is zero (the player goes forward) but messes up everywhere else. When it is 90 degrees, the player goes backwards ...
0
votes
1answer
44 views
Rotate a object in OpenGL
I want to move an objecto in OpenGL. I draw the object in (0,0,0), if the object is on that point it rotates fine (using the center of the object as reference to rotate). The problem comes when I move ...
0
votes
0answers
51 views
OpenGL Fastest way of rotating single objects
I have an unknown amount of polygons, all facing the camera (-z) with different positions. I want to rotate each polygon around its center by different angles. Would it be faster to use glRotate and ...
0
votes
1answer
39 views
opengl rotated object not centered
I am learning modern opengl(3.3), and atm I am creating my own mvp matrices.
I just have some weird problem, when I try to rotate the world, my camera does not seem to rotate around the center.
Here ...
0
votes
0answers
82 views
OpenGL freeglut rotating an object with arrow keys
I am trying to rotate an object (e.g. cube) in the coordination system origin around its global x and y axis using the arrow keys.
The problem is, when for example, I rotate for 90° around the y ...
1
vote
1answer
376 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
95 views
Interpolate between two modelview matrices
In OpenGL, given two camera positions (i.e. model view matrices), I would like to smoothly transition between them. That is, I want to interpolate between the two modelview matrices. I've seen many ...
1
vote
1answer
117 views
LWJGL - OpenGL - Camera rotation
i tried to create a first person camera. I took a piece of code of my XNA project and tried to convert it into java (LWJGL).
Matrix4f mx = Matrix4f.rotate(pitch, new Vector3f(1, 0, 0),
...
0
votes
1answer
133 views
How can I get view direction from the OpenGL ModelView Matrix?
I am writing a volume render program that constantly adjusts some plane geometry so it always faces the camera. The plane geometry rotates whenever the camera rotates in order to appear as if it ...
0
votes
1answer
137 views
OpenGl - Object inverts after 180 degrees of rotation
I have an object rendered and I'm trying to rotate the object with the mouse. The object will rotate fine for 180 degrees but after that, the object inverts (if facing toward camera, switches to face ...
2
votes
1answer
164 views
Translating camera around rotation point other than origin
Okay so this is a pretty specific question having to do with my camera transform in OpenGL. When the view opens the rotation point is around the origin - and when you translate the camera it does the ...
3
votes
1answer
108 views
Rotation for rolling 3d ball
I have a Ball in 3D space that has the following attributes:
location - a Vector3f representing where the ball is
rotation - a Vector3f representing the x, y, and z axis rotation angles
I want to ...
0
votes
0answers
72 views
OpenGL Rotation/Translation
I have a model of a ship and i am trying to move and rotate it with keyboard input but it only rotates properly when at (0,0,0). I want the ship to rotate its own y-axis and move in the direction its ...
0
votes
1answer
115 views
rotate 3d model around absolute axes
I can't figure out how to convert mouse drag into rotation around Ox and Oy of the image plane.
I followed the first answer from here and I'm storing the modelView matrix in an array, and updating it ...
2
votes
1answer
385 views
OpenGL camera pitch, yaw and roll rotation
I am trying to create a class to control the camera in OpenGL.
I have three methods to change the pitch yaw and roll of the camera.
The methods take a float parameter to use as the amount of rotation ...
0
votes
1answer
85 views
Multiple objects Rotated in OpenGL
I would like to create a snowman in OpenGL 2.0. I would like to rotate the entire shape, but every time I run the program it doesn't work.
glPushMatrix();
//bottom sphere
...
0
votes
1answer
126 views
OpenGL - Object local rotation
I am trying to make something like - lets call it flight simulator using modern OpenGL. I am trying to use yaw, pitch and roll to rotate my plane object. But it seems object rotates around global ...
0
votes
1answer
113 views
Rotate opengl tetrahedron around its center?
I've been asked to draw a 3D tetrahedron and make it rotate around x, y or z axes, depending on the input give. Now I have 2 questions.
1) I drew my tetrahedron using GL_TRIANGLES (4 triangles). Is ...
0
votes
3answers
688 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 ...
2
votes
1answer
408 views
LibGDX Moving a Rotated Camera
I've come to a situation in my application, built using LibGDX, where I need the camera to be able to rotate, and also be moveable by the user, as well as being able to be zoomed. My camera controls ...
2
votes
2answers
249 views
OpenGL Rotation relative to object axis
I'm struggling with the rotation of an object. I want to illustrate the gyro readings from my AR Drone 2.0 with this little program.
Maybe you want watch this short video first: ...
2
votes
1answer
296 views
3D object is rotating along all three axes when only X-Y rotation is desired
So I am implementing rotations for my 3D objects in an OpenGL scene, and so far the basic rotations themselves (using quaternions) work fine. I have also mostly solved the "look-at" problem, such ...
0
votes
1answer
107 views
2d rotation on set of points causes skewing distortion
I'm writing an application in OpenGL (though I don't think this problem is related to that). I have some 2d point set data that I need to rotate. It later gets projected into 3d.
I apply my rotation ...
5
votes
2answers
470 views
“Looking At” an object with a Quaternion
So I am currently trying to create a function that will take two 3D points A and B, and provide me with the quaternion representing the rotation required of point A to be "looking at" point B (such ...
0
votes
1answer
92 views
When supplied with an axis and quaternion, how can I get the angle with GLM?
I am using a GLM quaternion to represent an orientation for an object.
Basically, I would like to add the ability to extract the angle of an axis from the quat. I don't know if this is what I need to ...
1
vote
1answer
692 views
Rotate camera around point-of-interest in opengl
I want to rotate my "camera" around a point of interest. Currently the camera only rotates around the origin.
A lot of tutorials suggest to use following scheme:
translate(-P)
rotate
translate(P)
...
3
votes
1answer
295 views
OpenGL - Camera Orbiting a Point with Quaternions
So I currently use quaternions to store and modify the orientation of the objects in my OpenGL scene, as well as the orientation of the camera. When rotating these objects directly (i.e. saying I ...
2
votes
1answer
97 views
Opengl Weird Rotation
I'm trying to rotate a simple triangle. The problem is that while it rotates correctly, it decrease its size until it disappears.
Some pieces of my code so far:
// Vertices
GLfloat vertexArray[] =
...
0
votes
2answers
100 views
openGL (Qt) bind properly + Two rotation at the same time
I'm trying to get some experience in openGL, but now I'm facing "1.5" problems ;).
The first problem / question is how can I get a rotation in two directions "simultaneously"?
I want to draw a ...
0
votes
1answer
259 views
gluUnProject returns an inaccurate z coordinate under some conditions
I am getting some troubles with gluUnProject because I am retrieving an inaccurate Z coordinate.
The program involved is essentially a 3d viewer. I implemented a little function the allows the user ...
1
vote
1answer
115 views
Rotating around world 0,0,0 instead of object center
My object is rotating around 0,0,0, but I want it to rotate around itself on the Y-Axis.
I know there are other cases
Rotating object around itself in OpenGL
glRotatef not rotating as ...
0
votes
2answers
380 views
OpenGL Rotate camera around center-of-scene
I have a scene which is basically a square floor measuring 15x15 (a quad with coordinates (0,0,0) (0,0,15) (15,0,15) (15,0,0) ).
I 've set the center-of-scene to be at (7.5,0,7.5). Problem is I can't ...
-1
votes
1answer
112 views
Use of special keys in opengl makes my computer really slow [closed]
I write an opengl code that draws some objects, lights and textures on the objects. Special keys such as arrows rotate my texture mapped objects. But if I continue rotating them for ~10 seconds I even ...
3
votes
1answer
139 views
Can I rotate the view of glOrtho()?
I'm making a program where I need an orthographic projection.
So, I'm using glOrtho(). I made a zoom function but I was wandering if you can rotate your view?
Because glOrho() only looks parralel to ...
1
vote
1answer
554 views
Qt OpenGL - Rotation with mouse drag - negative delta
I have a GLWdiget subclass of QGLWidget where I would like to make rotate a 3D object along Ox and Oy axes.
For this, I have reimplemented mousePressEvent and mouseMoveEvent functions this way :
...
0
votes
1answer
342 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
187 views
Rotation to a given direction in opengl
I'm starting to confuse math.
I want to make a rotation that translates the direction of the y axis to a given direction.
So I want to make a function that has a direction for input, and makes a ...
0
votes
1answer
104 views
opengl rotate by quaternion
I implemented my quaternion class like this. I can convert the quaternion to 3x3 rotation matrix, but then how should i apply that to my modelview matrix?
1
vote
1answer
203 views
Following and Rotating about a path in OpenGL
I'm attempting an exercise where a vehicle is following the Lemniscate of Bernoulli (or more simply, a figure-8 track). I want to use glTranslatef and glRotatef to achieve this. So far, I have been ...
1
vote
1answer
119 views
How much rotate cylinder with OpenGL?
I have a problem with OpenGL. Here follows some useful data:
Blue point is cylinder, which is looking to green reference point on
the screen.
Green point is first reference point
Red point is ...
1
vote
1answer
68 views
handling lighting for objects within objects
Basically I'm writing a C++ program to draw objects in a world and I'm having some difficulty with lighting when I'm rotating/translating an object that consists of multiple objects (For example a ...
0
votes
1answer
239 views
Camera following player opengl
I have been looking into this problem for a while now but I can't find a solution.
Right now my camera follows the players position correctly but the rotation of the camera goes wrong. If I only use ...
0
votes
2answers
82 views
Camera lookAt target changes when rotating parent node
I have the following issue.I have a camera with lookAt method which works fine.I have a parent node to which I parent the camera.If I rotate the parent node while keeping the camera lookAt the target ...
2
votes
1answer
487 views
Issues with rotating rubik cube faces using opengl in C++
I have to design functional rubik cube as part of my homework. I am not using openGL directly, but a framework that was provided. ( All functions that do not belong to openGL and do not have their ...
0
votes
1answer
171 views
Smooth movement direction transitions in OpenGL
I have an OpenGL program with a little character that can be moved around the screen with the arrow keys. When one changes direction, the character changes its orientation accordingly, basically like ...
0
votes
1answer
33 views
Rotating in glutIdleFunc within a specified range
Let's say I have this glutIdleFunc going in the background of an OpenGL scene containing a little creature with multiple, radially arranged legs that "pulsate":
void PulsateLegs(void)
{
...


