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