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/conversion.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/conversion.scad')
-rw-r--r-- | case/pcb_case/conversion.scad | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/case/pcb_case/conversion.scad b/case/pcb_case/conversion.scad new file mode 100644 index 0000000..69c3c3b --- /dev/null +++ b/case/pcb_case/conversion.scad @@ -0,0 +1,8 @@ +include <bolt.scad> +include <nut.scad> + +function dim_pcb_to_case(pcb_dim, margins, t) = [ + pcb_dim[0]+margins[0][0]+margins[0][1]+4*t, + pcb_dim[1]+margins[1][0]+margins[1][1]+2*t+2*(bolt_l-t), + pcb_dim[2]+margins[2][0]+margins[2][1]+4*t +]; |