Tagged Questions
7
votes
3answers
303 views
Global Rotation
in GLScene we have three parameters (RollAngle, PitchAngle and TurnAngle) for rotation around local orientation. in the image below, how can I rotate cube around global orientation (orange axis)?
7
votes
3answers
750 views
C++ / openGL: Rotating a QUAD toward a point using quaternions (updated)
When I have a QUAD at a certain position, how can I rotate it in such a way that its normal points toward a given point? Imagine the colored blocks are just rectangular quads, then this image shows a ...
4
votes
3answers
2k views
Quaternion math for rotation?
I'm drawing a flat disk using gluDisk() in my scene. gluDisk() draws the disk facing the positive Z axis but I want it to be facing some arbitrary normal I have.
Clearly I need to use glRotate() to ...
3
votes
2answers
202 views
From quaternions to OpenGL rotations
I have an object which I want to rotate via keys. The object should yaw, pitch and roll. After trying a lot, I figured out that glRotate has its limitations and it won't be possible to implement ...
3
votes
1answer
95 views
OpenGL camera with 3 vectors
Okay, so I was following this tutorial to help me with making a camera in OpenGL: http://nehe.gamedev.net/data/articles/article.asp?article=08
So I followed it, and after some struggling, finally had ...
3
votes
2answers
356 views
How to get maya like rotations?
I am trying to achieve the same rotational effect like Maya in my project.
I have some knowledge on quaternions and the trackball example.
Unfortunately I am still unable to wrap my head around the ...
2
votes
2answers
71 views
OpenGL ArcBall rotation and animation using interpolation?
In my OpenGL application I need to use ArcBall rotation to rotate objects using mouse.
I relized that I have to go with Quaternions after reading this article - ...
1
vote
1answer
62 views
Rotating across 0 in OpenGL
I'm using quaternions to rotate an object in OpenGL, but I'm having an issue where when I rotate from 5 degrees to -5 degrees (crossing a unit plane) I see my model spin "the long way." That is to ...
1
vote
1answer
195 views
Rotating quaternions based on mouse movement (OpenGL and Java)
I'm writing a game in Java using OpenGL (the LWJGL binding, to be specific). Each entity, including the camera, has a quaternion that represents it's rotation. I've figured out how to apply the ...
1
vote
0answers
203 views
Problem with CML and OpenGL
I want make simple 3d viewer, but I have some problem with rotations.
I use matrixs for "adding" rotations, and quaternions to "keep" rotations.
Someone know what can be wrong ?
code :
StartDraging:
...
1
vote
3answers
318 views
Translating a Quaternion
(perhaps this is better for a math Stack Exchange?)
I have a chain composed of bones. Each bone has a with a tip and tail. The following code computes where its tip will be, given a rotation, and ...
1
vote
3answers
990 views
Can I interpolate rotation from two Quaternions created from Yaw/Pitch/roll?
Quaternions are good for interpolate rotations between them. so far so good.
If I have a networking game, will it suffice to transfer the rotation as vector3f or should I use a quaternion?
To make ...
1
vote
2answers
3k views
Convert Quaternion rotation to rotation matrix?
Basically, given a quaterion (qx, qy, qz, qw)... How can i convert that to an OpenGL rotation matrix? I'm also interested in which matrix row is "Up", "Right", "Forward" etc... I have a camera ...
0
votes
1answer
74 views
matrix/quaternion woes
So I got two matrices, the modelview matrix (should only rotates on the Y axis) and a rotation matrix (only rotates on the Y axis).
Now I need to know what the angle is of the projection (the view ...
0
votes
1answer
169 views
Quaternions and drawing with glMultMatrix (OpenGL)
I got a problem again. Since a couple of days I try to write a camera in Java without a gimbal lock. For solving this I try to use Quaternions and glMultMatrix from OpenGL. I also use the library ...
0
votes
1answer
101 views
Rotation with Quaternion not quite right
Following on from my previous question, I have now managed to rotate my object with quaternions but there is still a small problem and I dont know how to solve it. With the code below my object ...
0
votes
2answers
319 views
Adding Local Rotation to Global Rotation
I've tried many formulas and conversions, but nothing gave me the result I expect.
The scenario is very simple:
How the 3DS Max and other 3D softwares make the "transformation" of an increment in ...