Created
January 2, 2016 02:46
-
-
Save jpdevries/b91f17e5e8f2345945b6 to your computer and use it in GitHub Desktop.
cool math in js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function distanceBetweenTwoPoints(_a,_b) { | |
return Math.sqrt(Math.pow(Math.abs(_a.y - _b.y),2) + Math.pow(Math.abs(_a.x - _b.x),2)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment