Tagged Questions

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 ...
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
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 ...
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
274 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
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
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
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?
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
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 ...
2
votes
0answers
75 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
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 ...
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
343 views

rotating a quaternion on 1 axis?

Alright, so I got a model that is rotated by a quaternion. Now I can only set the rotation, I can't add an subtract from anything, so I need to get the value of a axis, and than add a number to it ...
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
0answers
132 views

the logarithm of quaternion [closed]

i'm reading <<3D math primer for graphics and game development>> By Fletcher Dunn and Ian Parberry, on page 170, the logarithm of quaternion is defined as log q = log([cosa nsina]) ≡ [0 ...
1
vote
1answer
272 views

Quaternion Cameras and projectile vectors

In our software we have a camera based on mouse movement, and a quarternion at its heart. We want to fire projectiles from this position, which we can do, however we want to use the camera to aim. ...
1
vote
2answers
1k 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 rotated the object by a ...
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 ...
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
110 views

Standard Position of a Quaternion?

In 2D, the standard position of a vector is down the positive X axis. Is there an equivalent position for quaternions?
0
votes
1answer
377 views

Quaternions still have gimbal lock

Instead of Euler angles I moved to Quaternions to represent and process the rotation of a cube in 3D. Although it would solve gimbal lock, I'm still experiencing this issue. My code is: // p is the ...
0
votes
1answer
1k views

Unity3D and Vector Maths - Slepr, Lerp, Quaternions

i have been studying unity3d for a few months and i have done some research of this mathematical concepts that we can use when moving / rotating a object. I have read some mathematical explanations, ...
0
votes
2answers
375 views

OpenGL ES arcball transformation problem

I've ported the arcball classes I've been using from vb.net to the iPhone using objective C++, but now I'm having a problem. When I rotate my object, everything is fine. As soon as I pan the view, my ...
0
votes
1answer
166 views

Quaternion Interpolation w/ Rate Matching

I have an object w/ and orientation and the rotational rates about each of the body axis. I need to find a smooth transition from this state to a second state with a different set of rates. ...
0
votes
2answers
175 views

Object quaternion parallel or perpendicular to all basis vectors

Given an object quaternion q, and basis vectors vx, vy, vz forming a 3D space, how can I check whether the quaternion is parallel or perpendicular to all of the basis vectors? For example, I have ...
0
votes
2answers
207 views

Flipping issue when interpolating Rotations using Quaternions

I use slerp to interpolate between two quaternions representing rotations. The resulting rotation is then extracted as Euler angles to be fed into a graphics lib. This kind of works, but I have the ...
0
votes
2answers
1k views

Translate Local quaternion rotation into global (gyro)

I need a way to get euler angles for rotation in global frame of reference from a local. I am using c#, wpf 3d and a gyroscope. I have a globe on the screen that should move in the same way as the ...