From 27029eb8db3e4b574de5c76e4bed3bef51e7adde Mon Sep 17 00:00:00 2001 From: Delanir Date: Thu, 27 Apr 2017 18:24:49 +0100 Subject: [PATCH] Fix Code Standard Fix indent lines 2799-2800 Fix one line that had more than 128 columns wide --- scripts/system/libraries/entitySelectionTool.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/system/libraries/entitySelectionTool.js b/scripts/system/libraries/entitySelectionTool.js index 8233ce9d4a..8bebbff19a 100644 --- a/scripts/system/libraries/entitySelectionTool.js +++ b/scripts/system/libraries/entitySelectionTool.js @@ -2796,8 +2796,8 @@ SelectionDisplay = (function() { }; if (directionFor3DStretch) { lastPick3D = rayPlaneIntersection(pickRay, - pickRayPosition3D, - planeNormal3D); + pickRayPosition3D, + planeNormal3D); distanceFor3DStretch = Vec3.length(Vec3.subtract(pickRayPosition3D, pickRay.origin)); } @@ -2839,7 +2839,8 @@ SelectionDisplay = (function() { // Are we using handControllers or Mouse - only relevant for 3D tools var controllerPose = getControllerWorldLocation(activeHand, true); - if (HMD.isHMDAvailable() && HMD.isHandControllerAvailable() && controllerPose.valid && that.triggered && directionFor3DStretch) { + if (HMD.isHMDAvailable() + && HMD.isHandControllerAvailable() && controllerPose.valid && that.triggered && directionFor3DStretch) { localDeltaPivot = deltaPivot3D; newPick = pickRay.origin;