Tagged Questions

Quaternions are a mathematical representation of transformations in 3D. They have 4 dimensions (one real and 3 imaginary) and can be represented as follows: a + i b + j c + k d or in terms of axis-angles: q = cos(a/2) + i ( x * sin(a/2)) + j (y * sin(a/2)) + k ( z * sin(a/2)) where: - a=angle of rotation. - x,y,z = vector representing axis of rotation.

learn more… | top users | synonyms

10
votes
7answers
5k 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 and can be any of the ...
9
votes
3answers
609 views

When do I need to use quaternions?

I have been carrying out 2D and 3D operations, including graphics, for many years and have never used quaternions so I don't have a feel for them. I know that they can be used for certain operations ...
7
votes
3answers
304 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
373 views

Limit camera pitch

How can I efficiently limit camera pitch when I have only camera quaternion? Do I have to convert to euler angles and then back to quaternion or is there any other way?
7
votes
3answers
751 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 ...
7
votes
6answers
4k 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 demos/labs from compsci ...
6
votes
1answer
118 views

Rotating 6 sides of a block

I've been following a XNA tutorial by The Hazy Mind I have a base object that has a Position (Vector3) and a Rotation (Quaternion). The object model looks like this From the camera implementation ...
6
votes
7answers
204 views

Quaternion Comparision?

Is quaternion comparison possible? I'm writing a Java class of Quaternions and I want to implement the Comparable interface to use the Collections.sort(List<Quaternion>) facility. I'm not expert ...
6
votes
2answers
171 views

Overhead of using classes for matrix of algebraic structures in C++

I am using C++ to code some complicated FFT algorithm, so I need to implement such algebraic structures as quaternions and Hamilton-Eisenstein codes. Algorithm works with 2D array of that structures. ...
5
votes
3answers
135 views

Correcting the Yaw part of one Quaternion by the Yaw part of another one

I have the following problem: A quaternion (q1) from a motion capturing device needs to be corrected by the yaw angle (and only yaw!) from another orientation quaternion (q2) derived by a second ...
5
votes
2answers
273 views

Extracting Yaw from a Quaternion

I have a rotation quaternion and want to extract the angle of rotation about the Up axis (the yaw). I am using XNA and as far as I can tell there is no inbuilt function for this. What is the best way ...
5
votes
2answers
816 views

Component of a quaternion rotation around an axis

I'm having trouble finding any good information on this topic. Basically I want to find the component of a quaternion rotation, that is around a given axis (not necessarily X, Y or Z - any arbitrary ...
5
votes
3answers
2k 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 would take user input ...
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
252 views

Quaternion rotation not working

I'm just starting to work with Quaternions, but I'm having some annoying difficulties getting a simple FPS camera to work properly using Quaternions. Basically, whenever I try to move the mouse, a ...
4
votes
2answers
393 views

How does this Quaternion rotation code work?

I'm trying to understand how the quaternion rotations work, I found this mini tutorial http://www.julapy.com/blog/2008/12/22/quaternion-rotation/ but He makes some assumptions that I can't workout, ...
4
votes
1answer
621 views

Quaternion cube rotation animation

I created this Rubiks Cube with Papervison3D. With some resources I created a Cube with 27 minicubes inside (3*3*3 = 27). Rotating the Rubiks Cube on mouse move is already done. (I do not rotate the ...
4
votes
2answers
374 views

Combine Rotation Axis Vectors

I'm experimenting with using axis-angle vectors for rotations in my hobby game engine. This is a 3-component vector along the axis of rotation with a length of the rotation in radians. I like them ...
4
votes
0answers
479 views

How to convert Quaternion rotation to Euler Angles [closed]

Possible Duplicate: Is there an algorithm for converting quaternion rotations to Euler angle rotations? Hey guys, I have been searching all over the internet and I cannot find a way to ...
4
votes
1answer
208 views

Quaternion and three axes

Given a quaternion q, and three 3D vectors (vx, vy, vz) which form coordinate axes, which can be oriented in arbitrary direction, but are all perpendicular to each other, thus forming a 3d space. How ...
4
votes
3answers
2k 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?
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
1answer
972 views

Compute Altitude and Azimuth from CMAttitude using either Roll, pitch and Yaw or Quaternion or Rotation Matrix

I am struck with a problem. I want to convert the CMAttitude information of an iPhone to Altitude (0 to 90deg) and Azimuth (0 to 360 deg). I have googled around and hit some threads which discuss ...
3
votes
2answers
357 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 ...
3
votes
2answers
355 views

Traveling along the surface of a sphere using quaternions

I'm programming a 3D game where the user controls a first-person camera, and movement is constrained to the inside surface of a sphere. I've managed to constrain the movement, but I'm having trouble ...
3
votes
2answers
360 views

What's a quaternion rotation?

Is quaternion rotation just a vector with X,Y,Z which the object will rotate towards, and a roll which turns the object on its axis? Is it that simple? Meaning if you have X=0, Z=0 and Y=1 the ...
3
votes
2answers
383 views

Euler angles and Quaternion orientation

how to convert Quaternion orientation output of wintracker II device to Euler Angles output only. Because Wintracker II device Output Euler angles and Quaternion orientation. i want to Euler angles ...
3
votes
6answers
4k 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 unambiguously. However, ...
2
votes
0answers
74 views

problems getting the angle of two quaterions

Okay, so I'm trying to get the angle of two quaternions, and it almost works perfectly, but then it jumps from evec angle: 237.44999653311922 evec angle: 119.60001380112993 and I can't figure out ...
2
votes
2answers
74 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 - ...
2
votes
0answers
139 views

LWJGL - Problems implementing 'roll' in a 6DOF Camera using quaternions and a translation matrix

I've spent a couple weeks on this issue and can't seem to find a proper solution and need some advice. I'm working on creating a Camera class using LWJGL/Java, and am using Quaternions to handle ...
2
votes
1answer
90 views

Quaternion alignment [closed]

I have two orientations represented as 4D quaternions: q0 and q1. I wish to align q0 to q1 by finding the offset between them and rotating q0 by this offset. What quaternion operations do I need to ...
2
votes
3answers
369 views

How to interpolate rotations?

I have two vectors describing rotations; a start rotation A and a target rotation B. How would I best go about interpolating A by a factor F to approach B? Using a simple lerp on the vectors fails to ...
2
votes
6answers
989 views

Quaternions and Transform Matrices

Tell me if I am wrong. I'm starting using quaternions. Using a rotation matrix 4 x 4 (as used in OpenGL), I can compute model view matrix multiplying the current model view with a rotation matrix. ...
1
vote
1answer
49 views

Getting Euler Angles from a Quaternion in Matlab

I have the X,Y,Z and W components of a Quaternion through time, in 4 separated vectors. QW 1x346 2768 double QX 1x346 2768 double QY ...
1
vote
1answer
47 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 ...
1
vote
1answer
39 views

Looking for a better method to do Quaternion differentiaton

I have a quaternion (4x1) and an angular velocity vector(3x1) and I call a function to calculates the differential quaternion as explained in this web. The code looks like this: float wx = ...
1
vote
1answer
48 views

Plotting quaternion in Matlab using “engine.h” from c++

I have an algorithm in C++ that uses Kalman Filter. Somewhere in the code a predict a Quaternion q' and then I update the Quaternion with Kalman Filter q. I want to plot two graphics in Matlab with ...
1
vote
2answers
36 views

When I have two orientation quaternions, how do I find the rotation quaternion needed to go from one to the other?

I'm using quaternions in my game, and I'm wondering how, when I have two orientation quaternions, I can get the rotation quaternion needed to go from the first one, q1, to the second one, q2. I'm self ...
1
vote
1answer
72 views

Getting two different results of adding two angles together

Okay, so I'm trying to add two angles together, and I'm trying two different things. the first one is using quaternions and matrices and vectors to get the right angle, the other is just angle1 - ...
1
vote
1answer
70 views

Direction vector from Quaternion?

I have a Quaternion representing the rotation of a 3D characters upper arm. I also have a line that is supposed to represent the new position of that characters' arm. That lines position is given by ...
1
vote
1answer
68 views

Matrix multiply with position, quaternion and scale components

Part of my code stores the equivalent of a 4x3 matrix, by storing an xyz position, an xyz scale, and a quaternion. Code snippet below: class tTransform { // data tVector4f m_Position; ...
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
61 views

Quaternions in CLAPACK or an Alternate C Style Quaternion Library

I am porting a set of spatial computations to an embedded environment that essentially compiles and runs C code. I have replaced a number of the linear algebra functions that previously used VNL (a ...
1
vote
1answer
200 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
1answer
137 views

quaternions for Opengl ES

I am working with Opengl es to create a stickman and this might seem like a stupid question but when using quaternions to represent rotation what should I do if want the rotation to be around another ...
1
vote
1answer
163 views

Still seem to have a gimbal-lock using quaternions

I maintain the position of an object using a reference quaternion ... I rotate a reference quaternion from 2D x-y touch swipes using the following code ... -(void)rotateViewOnX:(CGFloat)x ...
1
vote
1answer
312 views

SLERP & skeletal animation interpolation help!

I had skeletal animation in my program working fine, but I was interpolating between the 4x4 matrices stored for each bone between frames in a linear way, i.e. bMatrix bMathbMathInterpolate(bMatrix ...

1 2