Skip to content

Instantly share code, notes, and snippets.

@conorbuck
Created May 5, 2012 22:51
Show Gist options
  • Save conorbuck/2606166 to your computer and use it in GitHub Desktop.
Save conorbuck/2606166 to your computer and use it in GitHub Desktop.
JavaScript: Find the angle between two points
var p1 = {
x: 20,
y: 20
};
var p2 = {
x: 40,
y: 40
};
// angle in radians
var angleRadians = Math.atan2(p2.y - p1.y, p2.x - p1.x);
// angle in degrees
var angleDeg = Math.atan2(p2.y - p1.y, p2.x - p1.x) * 180 / Math.PI;
@drewbaker
Copy link

Thanks @timjuedemann but I actually wrote a function for this eventually that allows you to change where zero is, and even calculates distance from cursor to the element too.

Check it out here: https://github.com/funkhaus/fuxt/blob/master/utils/angleDistanceToCursor.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment