From b4c7bcae5e3b433818f55e9367c1808e27dd6f9c Mon Sep 17 00:00:00 2001 From: hkrish Date: Wed, 25 Dec 2013 20:33:51 +0100 Subject: [PATCH] Indent with Tabs like rest of paperjs code. --- src/path/Curve.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/path/Curve.js b/src/path/Curve.js index 01f9fd67..db17df78 100644 --- a/src/path/Curve.js +++ b/src/path/Curve.js @@ -1447,10 +1447,10 @@ new function() { // Scope for methods that require numerical integration if (point){ // We need to return the parameters for the intersection, // since they will be used for sorting - var t1 = Curve.getParameterOf(v1, point.x, point.y), - t2 = Curve.getParameterOf(v2, point.x, point.y); - addLocation(locations, curve1, t1, point, curve2, t2, point); - } + var t1 = Curve.getParameterOf(v1, point.x, point.y), + t2 = Curve.getParameterOf(v2, point.x, point.y); + addLocation(locations, curve1, t1, point, curve2, t2, point); + } } return { statics: /** @lends Curve */{