From 4d9d7ade8787ec3afc0b1930f4d103389bd6bafa Mon Sep 17 00:00:00 2001 From: Amanda Ghassaei <amandaghassaei@gmail.com> Date: Tue, 18 Aug 2015 19:27:37 -0400 Subject: [PATCH] plist settings for x y axis vector of motion config --- js/plists/CamPList.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/plists/CamPList.js b/js/plists/CamPList.js index fa1a63aa..826ac328 100644 --- a/js/plists/CamPList.js +++ b/js/plists/CamPList.js @@ -39,13 +39,13 @@ define(['three'], function(THREE){ scale: 20, components: { xAxis: { - name: "Y Axis", + name: "X Axis", rotary: false, axisOfMotion: null, //minBound //maxBound parent: "yAxis", - motionVector: {x:0, y:1, z:0}, + motionVector: {x:1, y:0, z:0}, stl: { filename: "assets/stls/stapler/xAxis.stl" // offset: {x:0,y:0,z:0}, @@ -54,13 +54,13 @@ define(['three'], function(THREE){ } }, frame: { - name: "X Axis", + name: "Y Axis", rotary: false, axisOfMotion: null, //minBound //maxBound parent: "substrate", - motionVector: {x:1, y:0, z:0}, + motionVector: {x:0, y:1, z:0}, stl: { filename: "assets/stls/stapler/yAxis.stl" } -- GitLab