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

I think an image describes best what I want:

no words can describe this

Given (P1x,P1y) and (P2x,P2y) what is the best way to calculate this angle? The origin is in the topleft and only the positive quadrant is used.


This is not homework.

share|improve this question
2  
I believe, that title of this question is misleading. There is no such thing like angle between two points. What you are looking for is an angle between X axis and line(or vector) that is defined by two points. – janst Dec 20 '12 at 11:22

closed as off topic by animuson, Tuxdude, Dave A, AbZy, Graviton Mar 18 at 3:42

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 85 down vote accepted

First find the difference between the start point and the end point.

deltaY = P2_y - P1_y
deltaX = P2_x - P1_x

Then calculate the angle.

angleInDegrees = arctan(deltaY / deltaX) * 180 / PI

If your language includes an atan2 function it becomes the following instead:

angleInDegrees = atan2(deltaY, deltaX) * 180 / PI
share|improve this answer
4  
Ahh, atan2 was the thing I sought. +1 and accepted. – nightcracker Sep 28 '11 at 16:37
I received two down votes recently; whoever did them should explain here. – Peter O. Mar 16 at 21:29

Sorry, but I'm pretty sure the answer above is wrong. Note that the y axis goes down the page (common in graphics). As such the deltaY calculation has to be reversed, or you get the wrong answer.

Consider:

System.out.println (Math.toDegrees(Math.atan2(1,1)));
System.out.println (Math.toDegrees(Math.atan2(-1,1)));
System.out.println (Math.toDegrees(Math.atan2(1,-1)));
System.out.println (Math.toDegrees(Math.atan2(-1,-1)));

gives

45.0
-45.0
135.0
-135.0

So if in the example above, P1 is (1,1) and P2 is (2,2) [because Y increases down the page], the code above will give 45.0 degrees for the example shown, which is wrong. Change the order of the deltaY calculation and it works properly.

share|improve this answer
1  
I reversed it as you suggested and my rotation was backwards. – Scott Beeson Oct 17 '12 at 5:17

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