mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Reduce EPSILON to 1e-13.
Reducing further to 1e-14 starts producing new issues in boolean operations code.
This commit is contained in:
parent
b6a4815d03
commit
4371e92191
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-12,
|
||||
EPSILON = 1e-13,
|
||||
MACHINE_EPSILON = 1.12e-16;
|
||||
|
||||
return /** @lends Numerical */{
|
||||
|
|
Loading…
Reference in a new issue