I have two vectors u and v. Is there a way of finding a quaternion representing the rotation from u to v?

link|improve this question

feedback

3 Answers

up vote 15 down vote accepted
Quaternion q;
vector a = crossproduct(v1, v2)
q.xyz = a;
q.w = sqrt((v1.Length ^ 2) * (v2.Length ^ 2)) + dotproduct(v1, v2)

Don't forget to normalize q

Richard is right about there not being a unique rotation, but the above should give the "shortest arc". Which is probably what you need.

link|improve this answer
Be aware that this does not handle the case of parallel vectors (both in the same direction or pointing in opposite directions). crossproduct will not be valid in these cases, so you first need to check dot(v1, v2) > 0.999999 and dot(v1, v2) < -0.999999, respectively, and either return an identity quat for parallel vectors, or return a 180 degree rotation (about any axis) for opposite vectors. – sinisterchipmunk May 17 at 13:19
feedback

The problem as stated is not well-defined: there is not a unique rotation for a given pair of vectors. Consider the case, for example, where u = <1, 0, 0> and v = <0, 1, 0>. One rotation from u to v would be a pi / 2 rotation around the z-axis. Another rotation from u to v would be a pi rotation around the vector <1, 1, 0>.

link|improve this answer
feedback

I'm not much good on Quaternion. However I struggled for hours on this, and could not make Polaris878 solution work. I've tried pre-normalizing v1 and v2. Normalizing q. Normalizing q.xyz. Yet still I don't get it. The result still didn't give me the right result.

In the end though I found a solution that did. If it helps anyone else, here's my working (python) code:

def diffVectors(v1, v2):
    """ Get rotation Quaternion between 2 vectors """
    v1.normalize(), v2.normalize()
    v = v1+v2
    v.normalize()
    angle = v.dot(v2)
    axis = v.cross(v2)
    return Quaternion( angle, *axis )

A special case must be made if v1 and v2 are paralell like v1 == v2 or v1 == -v2 (with some tolerance), where I believe the solutions should be Quaternion(1, 0,0,0) (no rotation) or Quaternion(0, *v1) (180 degree rotation)

link|improve this answer
I have a working implementation, but this yours is prettier, so I really wanted it to work. Unfortunately it failed all of my test cases. My tests all look something like quat = diffVectors(v1, v2); assert quat * v1 == v2. – sinisterchipmunk May 17 at 13:09
feedback

Your Answer

 
or
required, but never shown

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