diff options
author | xengineering <me@xengineering.eu> | 2025-01-06 19:54:16 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-01-06 19:54:16 +0100 |
commit | 468f151044a52af2f829c473179163f5d68b9614 (patch) | |
tree | 26d3fcccc354c8f011ffcac2669b7b62b2baca7e /mech/production.scad | |
parent | 03d41e8069623b5d627dfb298c471a16c380c91d (diff) | |
download | soundbox-468f151044a52af2f829c473179163f5d68b9614.tar soundbox-468f151044a52af2f829c473179163f5d68b9614.tar.zst soundbox-468f151044a52af2f829c473179163f5d68b9614.zip |
mech: Remove directory
It is planned to add a `pcb` folder with a custom PCB design. This
design will be incompatible with the current case developed in `mech`.
Thus the case has to be removed first.
Diffstat (limited to 'mech/production.scad')
-rw-r--r-- | mech/production.scad | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/mech/production.scad b/mech/production.scad deleted file mode 100644 index 5d04fbd..0000000 --- a/mech/production.scad +++ /dev/null @@ -1,38 +0,0 @@ -include <parameters.scad> - -use <panel_front.scad> - -use <pcb_case/conversion.scad> -use <pcb_case/shell.scad> -use <pcb_case/panel.scad> -use <pcb_case/spacer.scad> - -module production() { - dim = dim_pcb_to_case(pcb_dim, margins, t); - spacing = 5; - - pcb_case_shell_bottom(pcb_dim, drillings, margins, t); - - translate([-spacing, 0, 0]) - rotate([0, 180, 0]) - translate([0, 0, -dim[2]]) - pcb_case_shell_top(pcb_dim, margins, t); - - translate([-spacing, dim[1]+spacing, 0]) - rotate([0, -90, 0]) - translate([-t, -t, -t]) - pcb_case_panel_back(pcb_dim, margins, t); - - translate([0, dim[1]+spacing, t]) - rotate([0, 90, 0]) - translate([2*t-dim[0], -t, -t]) - panel_front(pcb_dim, margins, t); - - for(i = [0:3]) { - translate([dim[0]+bolt_dk/2+spacing, bolt_dk/2+i*(bolt_dk+spacing), 0]) { - spacer(); - } - } -} - -production(); |