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.
|
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.
|
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. |
|||||||
|
|
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. |
|||
|
|