mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -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,
|
PI = Math.PI,
|
||||||
isFinite = Number.isFinite,
|
isFinite = Number.isFinite,
|
||||||
TOLERANCE = 1e-5,
|
TOLERANCE = 1e-5,
|
||||||
EPSILON = 1e-11,
|
EPSILON = 1e-12,
|
||||||
MACHINE_EPSILON = 1.12e-16;
|
MACHINE_EPSILON = 1.12e-16;
|
||||||
|
|
||||||
return /** @lends Numerical */{
|
return /** @lends Numerical */{
|
||||||
|
|
Loading…
Reference in a new issue