summaryrefslogtreecommitdiff
path: root/mech/pcb_case/panel.scad
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-01-01 14:51:54 +0100
committerxengineering <me@xengineering.eu>2024-01-02 14:24:58 +0100
commit973cd7c4765b31f6d280ac8585287231bf62f343 (patch)
tree3adda5900bda22af466be05458685f470df88022 /mech/pcb_case/panel.scad
parenta09f5e3cdaabdcaf80dfa825d373f380a36c885d (diff)
downloadsoundbox-973cd7c4765b31f6d280ac8585287231bf62f343.tar
soundbox-973cd7c4765b31f6d280ac8585287231bf62f343.tar.zst
soundbox-973cd7c4765b31f6d280ac8585287231bf62f343.zip
mech: pcb_case: Test with external tolerances
The current tolerance values should be written down inside the files covering the related parts. The tolerance_tests.scad file should include those values.
Diffstat (limited to 'mech/pcb_case/panel.scad')
-rw-r--r--mech/pcb_case/panel.scad3
1 files changed, 3 insertions, 0 deletions
diff --git a/mech/pcb_case/panel.scad b/mech/pcb_case/panel.scad
index df4baf1..0ecd4f5 100644
--- a/mech/pcb_case/panel.scad
+++ b/mech/pcb_case/panel.scad
@@ -1,5 +1,8 @@
use <rounded_cube.scad>
+panel_dim_0_tol = 0.4;
+panel_dim_1_2_tol = 0.8;
+
module pcb_case_panel(dim, t) {
rounded_cube([t,dim[1]-2*t,dim[2]-2*t], t);
}