From decdc7e8a133d26256400126d2fe78986d5f8284 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Mon, 10 Feb 2025 22:55:30 -0500 Subject: [PATCH] Do not rotate objects locally on Y axis. Also do not add additional starting rotation (to test) --- layout.js | 4 ++-- meta.json | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/layout.js b/layout.js index 069df24..78feeef 100644 --- a/layout.js +++ b/layout.js @@ -19,7 +19,7 @@ let obj = [ let meta = { objects : [] } -let starting = 33/2; //(360 / (obj.length * 2)); +let starting = 0; //33/2; //(360 / (obj.length * 2)); for (let i = 0; i < obj.length; i++) { meta.objects.push ({ name : obj[i], @@ -27,7 +27,7 @@ for (let i = 0; i < obj.length; i++) { position : rotatePoint(0, 0, 40, starting + (i * (360 / obj.length))), rotation : { x : 0, - y : 90, + y : 0, z : starting + (i * (360 / obj.length)) } }); diff --git a/meta.json b/meta.json index cd25827..b9f2f4d 100644 --- a/meta.json +++ b/meta.json @@ -11,42 +11,42 @@ "name": "adapter_16mm_core", "material": "gray_plastic2", "position": { - "x": 38.35278939472772, - "y": 11.360613788156906, + "x": 40, + "y": 0, "z": 0 }, "rotation": { "x": 0, "y": 0, - "z": 16.5 + "z": 0 } }, { "name": "adapter_16mm_to_super8_reel", "material": "yellow_plastic", "position": { - "x": -29.014974840491504, - "y": 27.534183027750156, + "x": -19.999999999999993, + "y": 34.64101615137755, "z": 0 }, "rotation": { "x": 0, "y": 0, - "z": 136.5 + "z": 120 } }, { "name": "adapter_super8_to_16mm_core", "material": "neonblue_plastic", "position": { - "x": -9.337814554236205, - "y": -38.894796815907064, + "x": -20.000000000000018, + "y": -34.64101615137754, "z": 0 }, "rotation": { "x": 0, "y": 0, - "z": 256.5 + "z": 240 } } ],