From a6fc6723217109dd9ecfe07fc72ac13f64d4fe39 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 22 Apr 2022 11:42:44 -0400 Subject: [PATCH] fix(SlicingPlanes): Enable by default Enable slicing planes by default in the 3D view. The slicing planes are a helpful visualization. And, until we refine our default gradient opacity setting for all datasets, there will always be something other than a blank scene (if it is too high). BREAKING_CHANGE: 3D slicing planes are enabled by default --- src/Context/MainMachineContext.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Context/MainMachineContext.js b/src/Context/MainMachineContext.js index a995e107..3efe2e46 100644 --- a/src/Context/MainMachineContext.js +++ b/src/Context/MainMachineContext.js @@ -65,7 +65,7 @@ class MainMachineContext { step: 0.1, scroll: false, scrollDirection: 1, - visible: false, + visible: true, }, y: { min: 0.0, @@ -73,7 +73,7 @@ class MainMachineContext { step: 0.1, scroll: false, scrollDirection: 1, - visible: false, + visible: true, }, z: { min: 0.0, @@ -81,7 +81,7 @@ class MainMachineContext { step: 0.1, scroll: false, scrollDirection: 1, - visible: false, + visible: true, }, }