diff options
-rw-r--r-- | mech/pcb_case/tolerance_tests.scad | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mech/pcb_case/tolerance_tests.scad b/mech/pcb_case/tolerance_tests.scad index a981852..93c13f4 100644 --- a/mech/pcb_case/tolerance_tests.scad +++ b/mech/pcb_case/tolerance_tests.scad @@ -8,7 +8,7 @@ t = 2; step_width = 0.15; module bolt_drilling() { - steps = 3; + steps = 2; for(i = [-steps : steps]) { tol = bolt_ds_tol + i * step_width; @@ -24,7 +24,7 @@ module bolt_drilling() { } module nut_drilling() { - steps = 3; + steps = 2; for(i = [-steps : steps]) { tol = nut_d_tol + i * step_width; @@ -44,7 +44,7 @@ module nut_drilling() { } module panel_thickness() { - steps = 3; + steps = 2; height = 2*t; @@ -62,7 +62,7 @@ module panel_thickness() { } module panel_width_height() { - steps = 3; + steps = 2; height = 3*t; |