From daaf625ebd8b7399bf6fb6628017c78efa4e707f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 4 Jan 2016 10:02:58 +0100 Subject: [PATCH] Double GEOMETRIC_EPSILON to cover the last found edge case. See https://github.com/paperjs/paper.js/issues/784#issuecomment-168614053 --- 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 75cec64a..9721e4f2 100644 --- a/src/util/Numerical.js +++ b/src/util/Numerical.js @@ -103,7 +103,7 @@ var Numerical = new function() { * The epsilon to be used when performing "geometric" checks, such as * distances between points and lines. */ - GEOMETRIC_EPSILON: 2e-7, + GEOMETRIC_EPSILON: 4e-7, /** * The epsilon to be used when performing winding contribution checks. */