summaryrefslogtreecommitdiff
path: root/mech/bottom.scad
blob: cac355e0c680038a3e37c4ec5a63af6a6f008600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();