Last active
May 3, 2020 11:38
-
-
Save robbinhan/e202aa7b540c5058cdb001f08451bf1a to your computer and use it in GitHub Desktop.
|-|{"files":{"pointEqual.js":{"env":"js","abbr":"`pe"}},"tag":"Uncategorized"}
This file contains hidden or 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 pointEqual(a,b) | |
{ | |
var e = 1e-6; | |
return Math.abs(a-b) < e | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment