From fdff42b4a54be930f9479543d1a88544dccb3932 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Thu, 13 Oct 2016 14:24:12 +0200 Subject: [PATCH] fix indenting --- src/sliceActions/applyPrecision.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sliceActions/applyPrecision.js b/src/sliceActions/applyPrecision.js index 506431a..8fa3187 100644 --- a/src/sliceActions/applyPrecision.js +++ b/src/sliceActions/applyPrecision.js @@ -11,12 +11,12 @@ export default function applyPrecision(shapes) { function scaleUpShape(shape) { for (let i = 0; i < shape.length; i ++) { - const path = shape[i]; + const path = shape[i]; - for (let i = 0; i < path.length; i ++) { - const point = path[i]; + for (let i = 0; i < path.length; i ++) { + const point = path[i]; - point.copy(point.divideScalar(PRECISION)); - } + point.copy(point.divideScalar(PRECISION)); + } } }