diff options
Diffstat (limited to 'mech/bottom.scad')
-rw-r--r-- | mech/bottom.scad | 16 |
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(); |