0
votes
1answer
58 views
‘Difference’ between two quaternions
I'm working in Ogre, but it's a general quaternion problem.
I have an object, to which I apply a rotation quaternion Q1 initially. Later, I want to make it as if I initially rotat …
4
votes
5answers
526 views
quaternion libraries in C/C++
Any good libraries for quaternion calculations in C/C++ ?
Side note: any good tutorials/examples? I've google it and been to the first few pages but maybe you have have some demo …
1
vote
3answers
103 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 qu …
6
votes
5answers
608 views
Is there an algorithm for converting quaternion rotations to Euler angle rotations?
Is there an existing algorithm for converting a quaternion representation of a rotation to an Euler angle representation? The rotation order for the Euler representation is known a …
0
votes
2answers
190 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 …
1
vote
1answer
344 views
Spatial Rotation in Gmod Expression2.
I'm using expression2 to program behavior in Garry's mod (http://wiki.garrysmod.com/?title=Wire_Expression2)
Okay so, to set the precedent. In Gmod I have a block and I am at a co …
1
vote
1answer
199 views
Wiimote orientation as a 3D vector
I wonder if it is possible, as the Wiimote has 3 accelerometers, to convert the accelerometers readings to a 3D vector.
I know the trick to extract pitch/roll, but it only uses th …
1
vote
2answers
240 views
Finding quaternion representing the rotation from one vector to another
I have two vectors u and v. Is there a way of finding a quaternion representing the rotation from u to v?
0
votes
6answers
837 views
Euler angles vs. Quaternions - problems caused by the tension between internal storage and presentation to the user?
Quaternions are arguably an appropriate choice for representing object rotations internally. They are simple and efficient to interpolate and represent a single orientation unambig …
2
votes
3answers
715 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 …
2
votes
3answers
748 views
Should Quaternion based 3D Cameras accumulate Quaternions or Euler angles?
So I have written a Quaternion based 3D Camera oriented toward new programmers so it is ultra easy for them to integrate and begin using.
While I was developing it, at first I wou …
