Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to calculate obtuse angle between two vectors if both vectors and x axis is given. First vector can be taken as x axis. we can get acute by dot product and acos.

share|improve this question

1 Answer

up vote 3 down vote accepted

Before applying acos, check if the dot product is negative. If negative, the angle is obtuse :)

Further, as acos has a range of 0 to pi, you will do fine as long as you do not want reflex angles (>pi)

share|improve this answer
That is what I was looking for..... Thanks. I do not need reflex angle. – OliveOne Oct 6 '09 at 10:32
1  
Glad I could help. – Crimson Oct 6 '09 at 10:33
Sorry, But I could not able to get full angles... I have list of points and two external point (one is origin and second is on x). I should get 0,45,90,135,180,225,270,315,360 in case of 9 points on circle – OliveOne Oct 6 '09 at 11:51
1  
Assuming your known points are origin O (0,0), vector1 head A (x,0) - on the x-axis and another point B (m,n). If you want the angle made by OA and OB, the angle would be acos(m/sqrt(m*m + n*n))*180/pi degrees. – Crimson Oct 6 '09 at 12: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.