summaryrefslogtreecommitdiff
path: root/mech/assembly.scad
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-01-06 19:54:16 +0100
committerxengineering <me@xengineering.eu>2025-01-06 19:54:16 +0100
commit468f151044a52af2f829c473179163f5d68b9614 (patch)
tree26d3fcccc354c8f011ffcac2669b7b62b2baca7e /mech/assembly.scad
parent03d41e8069623b5d627dfb298c471a16c380c91d (diff)
downloadsoundbox-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/assembly.scad')
-rw-r--r--mech/assembly.scad18
1 files changed, 0 insertions, 18 deletions
diff --git a/mech/assembly.scad b/mech/assembly.scad
deleted file mode 100644
index 756e539..0000000
--- a/mech/assembly.scad
+++ /dev/null
@@ -1,18 +0,0 @@
-include <parameters.scad>
-
-use <panel_front.scad>
-
-use <pcb_case/pcb.scad>
-use <pcb_case/shell.scad>
-use <pcb_case/panel.scad>
-
-module assembly() {
- pcb(pcb_dim, drillings, margins, t);
-
- pcb_case_shell_bottom(pcb_dim, drillings, margins, t);
- pcb_case_shell_top(pcb_dim, margins, t);
- pcb_case_panel_back(pcb_dim, margins, t);
- panel_front(pcb_dim, margins, t);
-}
-
-assembly();