Skip to content

Instantly share code, notes, and snippets.

@robbinhan
Last active May 3, 2020 11:38
Show Gist options
  • Save robbinhan/e202aa7b540c5058cdb001f08451bf1a to your computer and use it in GitHub Desktop.
Save robbinhan/e202aa7b540c5058cdb001f08451bf1a to your computer and use it in GitHub Desktop.
|-|{"files":{"pointEqual.js":{"env":"js","abbr":"`pe"}},"tag":"Uncategorized"}
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