Simplify projector_controller.scad
This commit is contained in:
parent
3fd1e47b7b
commit
908fe52ad8
|
@ -28,11 +28,13 @@ module case_mount_debug () {
|
||||||
}
|
}
|
||||||
|
|
||||||
module case_mounts_debug () {
|
module case_mounts_debug () {
|
||||||
Z = -CaseInnerZ/2+(CaseMountsH/2);
|
X = CaseMountsX/2;
|
||||||
translate([CaseMountsX/2, CaseMountsY/2, Z]) case_mount_debug();
|
Y = CaseMountsY/2;
|
||||||
translate([CaseMountsX/2, -CaseMountsY/2, Z]) case_mount_debug();
|
Z = -(CaseInnerZ/2)+(CaseMountsH/2);
|
||||||
translate([-CaseMountsX/2, CaseMountsY/2, Z]) case_mount_debug();
|
translate([X, Y, Z]) case_mount_debug();
|
||||||
translate([-CaseMountsX/2, -CaseMountsY/2, Z]) case_mount_debug();
|
translate([X, -Y, Z]) case_mount_debug();
|
||||||
|
translate([-X, Y, Z]) case_mount_debug();
|
||||||
|
translate([-X, -Y, Z]) case_mount_debug();
|
||||||
}
|
}
|
||||||
|
|
||||||
module case_debug () {
|
module case_debug () {
|
||||||
|
|
Loading…
Reference in New Issue