Reduce EPSILON to 1e-13.

Reducing further to 1e-14 starts producing new issues in boolean operations code.
This commit is contained in:
Jürg Lehni 2015-01-03 21:03:13 +01:00
parent b6a4815d03
commit 4371e92191

View file

@ -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 */{