Do not rotate objects locally on Y axis. Also do not add additional starting rotation (to test)

This commit is contained in:
Matt McWilliams 2025-02-10 22:55:30 -05:00
parent 6f80393825
commit decdc7e8a1
2 changed files with 11 additions and 11 deletions

View File

@ -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))
}
});

View File

@ -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
}
}
],