I have two vectors u and v. Is there a way of finding a quaternion representing the rotation from u to v?
|
feedback
|
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. | |||
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>. | |||
|
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:
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) | ||||
feedback
|