From c0bb6890bde71837bdefbdb77d62b7bc5cfdbf01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Thu, 1 Oct 2015 20:47:56 -0500 Subject: [PATCH] Switch back to CURVETIME_EPSILON now that overlap edge-case appears to be handled. --- src/path/Curve.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/Curve.js b/src/path/Curve.js index d4d5fc27..d6b37f1a 100644 --- a/src/path/Curve.js +++ b/src/path/Curve.js @@ -1419,7 +1419,7 @@ new function() { // Scope for intersection using bezier fat-line clipping return; // Let P be the first curve and Q be the second var q0x = v2[0], q0y = v2[1], q3x = v2[6], q3y = v2[7], - epsilon = /*#=*/Numerical.GEOMETRIC_EPSILON, + epsilon = /*#=*/Numerical.CURVETIME_EPSILON, getSignedDistance = Line.getSignedDistance, // Calculate the fat-line L for Q is the baseline l and two // offsets which completely encloses the curve P.