blob: df4baf1c6794fb129c6143311f2f346f859836f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use <rounded_cube.scad>
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);
}
|