Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you find the 3 euler angles between 2 3D vectors? When I have one Vector and I want to get its rotation, this link can be usually used: Calculate rotations to look at a 3D point?

But how do I do it when calculating them according to one another?

share|improve this question
3  
Your question is not correct. You need three angles if you want to align two reference frames. If you need only to align two vectors then only two angles are needed. – 6502 Feb 27 at 10:04
How do you calculate the two angles? And how come the BVH file format (davedub.co.uk/bvhacker) has 3 angles for moving the bones? – tomyake May 3 at 18:23

1 Answer

As others have already pointed out, your question should be revised. Let's call your vectors a and b. I assume that length(a)==length(b) > 0 otherwise I cannot answer the question.


Calculate the cross product of your vectors v = a x b; v gives the axis of rotation. By computing the dot product, you can get the cosine of the angle you should rotate with cos(angle)=dot(a,b)/(length(a)length(b)), and with acos you can uniquely determine the angle (@Archie thanks for pointing out my earlier mistake). At this point you have the axis angle representation of your rotation.

The remaining work is to convert this representation to the representation you are looking for: Euler angles. Conversion Axis-Angle to Euler is a way to do it, as you have found it. You have to handle the degenerate case when v = [ 0, 0, 0], that is, when the angle is either 0 or 180 degrees.


I personally don't like Euler angles, they screw up the stability of your app and they are not appropriate for interpolation, see also

share|improve this answer
Cross production is not enough - it won't distinguish 0 and 180 degrees angles. You should compute both: cross to get a sine and scalar to get a cosine, and then use both of them to compute the angle (for instance via atan2() function in C math library). – Archie Feb 27 at 10:00
What do you think of this method:euclideanspace.com/maths/geometry/rotations/conversions/… – tomyake Feb 27 at 10:09
@Archie Yes, correct, fixed. Actually the dot product and acos is enough. – Ali Feb 27 at 10:17
@tomyake Yes, that seems to be an easier way to do it. – Ali Feb 27 at 10:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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