fixed indent for cases with more code standardization and cleanup

This commit is contained in:
Edward Kisiel
2024-01-31 22:36:53 -05:00
parent e5b9e8263c
commit ebcafd0f05
12 changed files with 117 additions and 81 deletions

View File

@@ -34,7 +34,7 @@
module pcb_holder(size, wallthick) {
adjust=.01;
adj=.01;
$fn = 90;
difference() {
union() {
@@ -55,7 +55,7 @@ module pcb_holder(size, wallthick) {
[-wallthick/2,2]]);
}
translate([-.5,0,2]) cube([size[0]+1,size[2],5]);
translate([6,-adjust-5-1.75,-adjust]) cube([size[0]-12,14,8]);
translate([6,-adj-5-1.75,-adj]) cube([size[0]-12,14,8]);
}
}