summaryrefslogtreecommitdiff
path: root/mech/bottom.scad
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-12-22 20:45:48 +0100
committerxengineering <me@xengineering.eu>2024-01-02 14:24:06 +0100
commit7224aa0c74ae51f49e87e9c18bc94c2761dadf24 (patch)
treec24030d497b17994abccfa81c807c3610e42e703 /mech/bottom.scad
parentdea6ba3ed5d3878580cc0c1a9e102528ff7bf998 (diff)
downloadsoundbox-7224aa0c74ae51f49e87e9c18bc94c2761dadf24.tar
soundbox-7224aa0c74ae51f49e87e9c18bc94c2761dadf24.tar.zst
soundbox-7224aa0c74ae51f49e87e9c18bc94c2761dadf24.zip
mech: Add initial state
This code used to be developed outside a Git repository. It is moved here to support the development workflow by frequent commits.
Diffstat (limited to 'mech/bottom.scad')
-rw-r--r--mech/bottom.scad16
1 files changed, 16 insertions, 0 deletions
diff --git a/mech/bottom.scad b/mech/bottom.scad
new file mode 100644
index 0000000..cac355e
--- /dev/null
+++ b/mech/bottom.scad
@@ -0,0 +1,16 @@
+include <common.scad>
+
+module bottom() {
+ union () {
+ pcb_case_shell_bottom(
+ dim, t, h, [
+ base_socket,
+ base_socket + dx,
+ base_socket + dy,
+ base_socket + dx + dy
+ ]
+ );
+ }
+}
+
+bottom();