diff options
Diffstat (limited to 'mech/pcb_case/pcb.scad')
-rw-r--r-- | mech/pcb_case/pcb.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mech/pcb_case/pcb.scad b/mech/pcb_case/pcb.scad index ba211ac..23602be 100644 --- a/mech/pcb_case/pcb.scad +++ b/mech/pcb_case/pcb.scad @@ -1,5 +1,5 @@ -module pcb(dim, drillings) { - translate([15, 5, 15]) { +module pcb(dim, drillings, margins, t) { + translate([2*t+margins[0][0], 2*t+margins[1][0], t+margins[2][0]]) { difference() { cube([dim[0], dim[1], dim[2]]); for (drilling = drillings) { |