From a253fc54e17bdd45ce26a949333832d48f2bd08c Mon Sep 17 00:00:00 2001 From: Pitchaya Boonsarngsuk <2285135b@student.gla.ac.uk> Date: Wed, 21 Mar 2018 16:22:08 +0000 Subject: [PATCH] Add space --- src/interpolation/interpCommon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpolation/interpCommon.js b/src/interpolation/interpCommon.js index 37629c4..4b5f480 100644 --- a/src/interpolation/interpCommon.js +++ b/src/interpolation/interpCommon.js @@ -66,7 +66,7 @@ export function placeNearToNearestNeighbour(node, nearNeighbour, radius, sampleS } // Determine the angle - let angle = binarySearchMin(lowBound, highBound,sumDistErrorByAngle); + let angle = binarySearchMin(lowBound, highBound, sumDistErrorByAngle); let newPoint = pointOnCircle(nearNeighbour.x, nearNeighbour.y, angle, radius); node.x = newPoint.x; node.y = newPoint.y;