Skip to content

Instantly share code, notes, and snippets.

@imbcmdth
Created January 3, 2014 08:21
Show Gist options
  • Save imbcmdth/8234685 to your computer and use it in GitHub Desktop.
Save imbcmdth/8234685 to your computer and use it in GitHub Desktop.
var x = event.pageX - screen.offsetLeft;
var y = event.pageY - screen.offsetTop;
function distance(x, y) {
return Math.sqrt(x * x + y * y);
}
var d = distance(x - targetX, y - targetY);
if (d <= tolerance) {
/* ... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment