Tagged Questions
The quaternions tag has no wiki summary.
15
votes
4answers
135 views
Why are quaternions used for rotations?
I'm a physicist, and have been learning some programming, and have come across a lot of people using quaternions for rotations instead of writing things in matrix/vector form.
In physics, there are ...
4
votes
1answer
94 views
How to compute opposite view from a quaternion rotation?
I have a quaternion rotation, as usually described by 4 values: a b c d.
Lets say it transforms the x axis so that i look at some object from the front. Now i want to change this rotation so i look at ...
4
votes
1answer
1k views
iPhone GLGravity example using quaternions
GLGravity iPhone example showing how to use accelerometer and OpenGL suffers from Gimbal Lock problem. I'm wondering is there any code available using quaternion rotation instead of Euler angles? Any ...
4
votes
2answers
2k views
How to rotate about the center of screen using quaternions in opengl?
I am trying implement arcball/trackball rotation but I have a problem with the center of
rotation. I want the center to be the center of my screen no matter what.
Let me explain what I have done so ...
3
votes
2answers
205 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
4answers
791 views
Source code needed for calculating quaternions
I have gyroscope + accelerometer data at each time period T.
I want to calculate the rotation of the object at each time - it can rotate on its axises. So I've read that it is convenient to represent ...
3
votes
5answers
2k views
opengl matrix rotation quaternions
Im trying to do a simple rotation of a cube about the x and y axis:
I want to always rotate the cube over the x axis by an amount x
and rotate the cube over the yaxis by an amount y independent of ...
3
votes
3answers
1k views
Help me with Rigid Body Physics/Transformations
I want to instance a slider constraint, that allows a body to slide between point A and point B.
To instance the constraint, I assign the two bodies to constrain, in this case, one dynamic body ...
2
votes
3answers
331 views
Intuitive 3D Math Resources
I have been trying to find some well presented and explained Vector and Quaternion resources recently to brush up on my 3D skills, and have been having some trouble.
Most of the resources I have ...
2
votes
2answers
546 views
Quaternion from Orthogonal Basis
I have a projectile object that is moving along a velocity vector. I need to ensure that the object is always facing in the direction of the velocity vector. Furthermore, I am representing object ...
2
votes
4answers
700 views
Can someone explain how I can use Quanternions to use the mouse to look around like a FPS?
Yesterday I asked: How could simply calling Pitch and Yaw cause the camera to roll?
Basically, I found out because of "Gimbal Lock" that if you pitch + yaw you will inevitably produce a rolling ...
1
vote
1answer
48 views
Rotations with QQuaternion and QSlider
I have implemented an Objectrotation with QQuaternion and QPushButton.
As long as the plus_x_button is pushed the slot rotate_plus_x() is activated.
Respectively for minus_x.
void ...
0
votes
0answers
82 views
Android Bone/skeletal animation under opengl-es 1.1
I wrote an MS3D parser, that is import my vertexes, triangles, normals, bones, joints, etc.
That is very good and fast.
But what is the way to move that bones from my OpenGL?
Is there a simple ...
0
votes
1answer
94 views
Quaternion rotation opengl
If i make a quaternion which represents for example a players direction and the angle around this rotation. So for the application I intend to make a plane flying. The quaternion would represent the ...
0
votes
1answer
102 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
0answers
47 views
Dividing up 3d angles into equal quantities
Say you have a 2d object, you could easily divide this into 15 degree rotations by simply rotating around the centre in 15 degree increments.
If I want to calculate for a 3d object all the angles ...