mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Reduce value of EPSILON to the lowest amount that does not cause issues in boolean-test.
This commit is contained in:
parent
477527f8ec
commit
f0fdb804ec
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ var Numerical = new function() {
|
|||
PI = Math.PI,
|
||||
isFinite = Number.isFinite,
|
||||
TOLERANCE = 1e-5,
|
||||
EPSILON = 1e-11,
|
||||
EPSILON = 1e-12,
|
||||
MACHINE_EPSILON = 1.12e-16;
|
||||
|
||||
return /** @lends Numerical */{
|
||||
|
|
Loading…
Reference in a new issue