diff --git a/photon-client/src/components/pipeline/3D/MiniMap.vue b/photon-client/src/components/pipeline/3D/MiniMap.vue index 41fdf7c572..1ea0829582 100644 --- a/photon-client/src/components/pipeline/3D/MiniMap.vue +++ b/photon-client/src/components/pipeline/3D/MiniMap.vue @@ -81,8 +81,8 @@ export default { let arrow = (new ArrowHelper(new Vector3(1, 0, 0).normalize(), new Vector3(0, 0, 0), 1, // length 0xff0000, - 0.2, - 0.2, + 0.1, + 0.1, )); arrow.rotation.setFromQuaternion(quat) arrow.rotateZ(-Math.PI / 2) @@ -92,8 +92,8 @@ export default { arrow = (new ArrowHelper(new Vector3(1, 0, 0).normalize(), new Vector3(0, 0, 0), 1, // length 0x00ff00, - 0.2, - 0.2, + 0.1, + 0.1, )); arrow.rotation.setFromQuaternion(quat) // arrow.rotateX(Math.PI / 2) @@ -102,8 +102,8 @@ export default { arrow = (new ArrowHelper(new Vector3(1, 0, 0).normalize(), new Vector3(0, 0, 0), 1, // length 0x0000ff, - 0.2, - 0.2, + 0.1, + 0.1, )); arrow.setRotationFromQuaternion(quat) arrow.rotateX(Math.PI / 2) diff --git a/photon-client/src/views/PipelineViews/AprilTagTab.vue b/photon-client/src/views/PipelineViews/AprilTagTab.vue index 8fecdc37e2..48ce0fd036 100644 --- a/photon-client/src/views/PipelineViews/AprilTagTab.vue +++ b/photon-client/src/views/PipelineViews/AprilTagTab.vue @@ -16,7 +16,7 @@ name="Decimate" min="0" max="3" - step=".01" + step=".5" @input="handlePipelineData('decimate')" /> - -