diff options
author | xengineering <me@xengineering.eu> | 2024-12-24 12:39:34 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-12-26 12:06:36 +0100 |
commit | db966c966929dd3abc29ebab7ce47d638ba4a94f (patch) | |
tree | af2b844a2938de1698712642261bc2f8aa52732a /case/pcb_case/panel.scad | |
parent | 03d41e8069623b5d627dfb298c471a16c380c91d (diff) | |
download | soundbox-db966c966929dd3abc29ebab7ce47d638ba4a94f.tar soundbox-db966c966929dd3abc29ebab7ce47d638ba4a94f.tar.zst soundbox-db966c966929dd3abc29ebab7ce47d638ba4a94f.zip |
WIP: Move `mech` directory to `case`
TODO: There are outdated references (see grep -R mech .)
The directory name should reflect what is inside, not the field of
engineering it belongs to.
Diffstat (limited to 'case/pcb_case/panel.scad')
-rw-r--r-- | case/pcb_case/panel.scad | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/case/pcb_case/panel.scad b/case/pcb_case/panel.scad new file mode 100644 index 0000000..eef0b28 --- /dev/null +++ b/case/pcb_case/panel.scad @@ -0,0 +1,28 @@ +include <nut.scad> + +use <conversion.scad> +use <rounded_cube.scad> + +panel_dim_0_tol = 0.3; +panel_dim_1_2_tol = 0.45; + +module pcb_case_panel(pcb_dim, margins, t) { + dim = dim_pcb_to_case(pcb_dim, margins, t); + + rounded_cube( + dim=[t, dim[1]-2*t, dim[2]-2*t], + radius=t + ); +} + +module pcb_case_panel_back(pcb_dim, margins, t) { + translate([t, t, t]) + pcb_case_panel(pcb_dim, margins, t); +} + +module pcb_case_panel_front(pcb_dim, margins, t) { + dim = dim_pcb_to_case(pcb_dim, margins, t); + + translate([dim[0]-2*t, t, t]) + pcb_case_panel(pcb_dim, margins, t); +} |