From c9f5c02ee46a5758b1cf22330af77b8f9324e855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sun, 11 Oct 2015 17:00:01 +0200 Subject: [PATCH] Decrease GEOMETRIC_EPSILON This appears to be better aligned with the new Curve#getParameterOf() behavior. --- src/util/Numerical.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Numerical.js b/src/util/Numerical.js index fe04af0e..f3501c1c 100644 --- a/src/util/Numerical.js +++ b/src/util/Numerical.js @@ -106,7 +106,7 @@ var Numerical = new function() { * collinearity. This value is somewhat arbitrary and was chosen by * trial and error. */ - GEOMETRIC_EPSILON: 1e-6, + GEOMETRIC_EPSILON: 1e-7, /** * The epsilon to be used when performing "trigonometric" checks, such * as examining cross products to check for collinearity. This value is