summaryrefslogtreecommitdiff
path: root/mech/pcb_case/panel.scad
blob: 0ecd4f577cf3963931b42cb63281e6f125caeefe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use <rounded_cube.scad>

panel_dim_0_tol = 0.4;
panel_dim_1_2_tol = 0.8;

module pcb_case_panel(dim, t) {
	rounded_cube([t,dim[1]-2*t,dim[2]-2*t], t);
}

module pcb_case_panel_back(dim, t) {
	translate([t,t,t])
		pcb_case_panel(dim, t);
}

module pcb_case_panel_front(dim, t) {
	translate([dim[0]-2*t,t,t])
		pcb_case_panel(dim, t);
}