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/parameters.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/parameters.scad')
-rw-r--r-- | case/parameters.scad | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/case/parameters.scad b/case/parameters.scad new file mode 100644 index 0000000..9fda8b4 --- /dev/null +++ b/case/parameters.scad @@ -0,0 +1,21 @@ +include <pcb_case/bolt.scad> + +t = 1.65; + +pcb_dim = [30, 65, 1.4]; + +margins = [ + [1, 0.3], + [3.6, 1.7], + [bolt_l-t-pcb_dim[2], 27] +]; + +base_drilling = [3.5, 3.5]; +dx = [23, 0]; +dy = [0, 58]; +drillings = [ + base_drilling, + base_drilling + dx, + base_drilling + dy, + base_drilling + dx + dy +]; |