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

How would you find the signed angle theta from vector a to b?

And yes, I know that theta = arccos((a.b)/(|a||b|)).

However, this does not contain a sign (i.e. it doesn't distinguish between a clockwise or counterclockwise rotation).

I need something that can tell me the minimum angle to rotate from a to b. A positive sign indicates a rotation from +x-axis towards +y-axis. Conversely, a negative sign indicates a rotation from +x-axis towards -y-axis.

assert angle((1,0),(0,1)) == pi/2.
assert angle((0,1),(1,0)) == -pi/2.
share|improve this question

2 Answers

up vote 18 down vote accepted

If you have an atan2() function in your math library of choice:

signed_angle = atan2(b.y,b.x) - atan2(a.y,a.x)
share|improve this answer
Perfect, thank you. – Cerin Jan 27 '10 at 20:50
3  
What about a = (-1,1) and b = (-1,-1), where the answer should be pi/2? You should check if the absolute value is bigger than pi, and then add or subtract 2*pi if it is. – Derek Ledbetter Jan 27 '10 at 21:52
@Derek Good catch. I actually discovered this myself while implementing the solution. – Cerin Jan 28 '10 at 13:06

What you want to use is often called the “perp dot product”, that is, find the vector perpendicular to one of the vectors, and then find the dot product with the other vector.

if(a.x*b.y - a.y*b.x < 0)
    angle = -angle;

You can also do this:

angle = atan2( a.x*b.y - a.y*b.x, a.x*b.x + a.y*b.y );
share|improve this answer
do you know whether the second equation always return angles less than 180º? – rraallvv Mar 2 at 16:32
The angle will be between -pi and pi radians, inclusive. – Derek Ledbetter Mar 6 at 2:30
great that solves the issue when a = (-1,1) and b = (-1,-1) pointed above – rraallvv Mar 6 at 3:20

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.