From a103f9fa2f8b391fc7052cdfea8b747ce3d2bf0f Mon Sep 17 00:00:00 2001 From: Kevin Lee <kevin@infinite-lee.com> Date: Thu, 26 Jul 2018 19:28:12 -0700 Subject: [PATCH] fix lint --- src/components/tools/networked-drawing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tools/networked-drawing.js b/src/components/tools/networked-drawing.js index 3019cfba1..efb7a424e 100644 --- a/src/components/tools/networked-drawing.js +++ b/src/components/tools/networked-drawing.js @@ -317,7 +317,7 @@ AFRAME.registerComponent("networked-drawing", { //calculate the segments for a given point addSegments(segmentsList, point, forward, up, radius) { - const angleIncrement = Math.PI * 2 / this.segments; + const angleIncrement = (Math.PI * 2) / this.segments; for (let i = 0; i < this.segments; i++) { const segment = segmentsList[i]; this.rotatePointAroundAxis(segment, point, forward, up, angleIncrement * i, radius); -- GitLab