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.

Does anyone know how to get an angle between two points when 0 degree is at 12 o'clock? I'm using Atan2 for that but it returns 0 degree at 3 o'clock. Can't find the way out. I suck at math.

share|improve this question
5  
There are no angles between points. Angles are between vectors or lines – icepack Dec 17 '12 at 20:01
Two points do not define an angle. Also in what coordinate system are the points specified? Do you mean the angle between the two vectors from the origin to your two points given in Cartesian coordinates? – Daniel Brückner Dec 17 '12 at 20:03
For clarification, the OP is visualizing a set of axis with the 'two points' as points on 2 lines that start at the center – PinnyM Dec 17 '12 at 20:06

closed as not a real question by icepack, Ricardo Lohmann, Tim, jnml, andand Dec 17 '12 at 20:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Atan2() returns the counterclockwise angle from the positive X axis.

If you want the clockwise angle from the positive Y axis, you can subtract that angle from 90 degrees.

share|improve this answer
And don't forget to convert from radians to degrees if required. – Daniel Brückner Dec 17 '12 at 20:16
It does not tell me really much :P – PsykoCoder Dec 17 '12 at 20:18
Thanks guys. Problem solved :) – PsykoCoder Dec 17 '12 at 20:34

Do you know the horizontal and vertical positions of your points ?

If so, I will name them (X1, Y1) and (X2, Y2) (X being horizontal and Y vertical)

You can calulate the position of the point #2 relative to the position of #1 : X = X2 - X1 Y = Y2 - Y1 you can use atan( X / Y ) to get the angle you want.

You also want to check if Y == 0, because you won't be able to do X / Y. if Y == 0, then your line is horizontal.

PS : It is quite strange to speak about the angle of two points.

share|improve this answer

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