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 (maybe a degree or radian?) and than re-add the modified quaternion.

How can I do this? (answer on each axis).

link|improve this question

80% accept rate
1  
I think you need to clarify a bit further. You say you can only set the rotation... A quaternion serves the same purpose as a rotation matrix. The difference being that the quaternion is numerically stable, they are more expensive to apply to 3d geometry but are less expensive for concatenation... So they are typically used when long series of rotations need to be applied and then they are transformed back to rotation matrices before application. Please clarify what you mean by answer on each axis, perhaps you want quaternion -> three rotation matrix where each is about one axis? – Quaternion Dec 14 '10 at 7:27
feedback

1 Answer

up vote 3 down vote accepted

You can multiply two quaternions together to produce a third quaternion that is the result of the two rotations. Note that quaternion multiplication is not commutative, meaning order matters (if you do this in your head a few times, you can see why).

You can produce a quaternion that represents a rotation by a given angle around a particular axis with something like this (excuse the fact that it is c++, not java):

Quaternion Quaternion::create_from_axis_angle(const double &xx, const double &yy, const double &zz, const double &a)
{
    // Here we calculate the sin( theta / 2) once for optimization
    double result = sin( a / 2.0 );

    // Calculate the x, y and z of the quaternion
    double x = xx * result;
    double y = yy * result;
    double z = zz * result;

    // Calcualte the w value by cos( theta / 2 )
    double w = cos( a / 2.0 );

    return Quaternion(x, y, z, w).normalize();
}

So to rotate around the x axis for example, you could create a quaternion with createFromAxisAngle(1, 0, 0, M_PI/2) and multiply it by the current rotation quaternion of your model.

link|improve this answer
That worked. Thank you very much! ^_^ – William Dec 14 '10 at 7:54
@William - no worries – sje397 Dec 14 '10 at 9:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.