diff options
author | xengineering <me@xengineering.eu> | 2024-01-01 16:36:47 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 14:24:58 +0100 |
commit | cd2afdff61e24eebb4beb6076a58a7cc50e19dc3 (patch) | |
tree | 20bbe9f8f341056f8b38965a8b75c635f25b001d | |
parent | f46045eaf93f87db15241824c160fe794b3fcc94 (diff) | |
download | soundbox-cd2afdff61e24eebb4beb6076a58a7cc50e19dc3.tar soundbox-cd2afdff61e24eebb4beb6076a58a7cc50e19dc3.tar.zst soundbox-cd2afdff61e24eebb4beb6076a58a7cc50e19dc3.zip |
mech: pcb_case: Set tolerance steps to +/- 2
Reducing from +/- 3 to +/- 2 reduces printing time for the tolerance
test.
-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; |