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