diff options
author | xengineering <me@xengineering.eu> | 2024-01-01 18:10:07 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 15:16:53 +0100 |
commit | 35ec58bf32d9a8706e9c0e7c42d40a59bd793319 (patch) | |
tree | ff69482b83bdabd2fb2cb7b97ebb73616ecf0da3 /mech/pcb_case/pcb.scad | |
parent | 187cf96353817701bb49d51117f2dd4f5099e597 (diff) | |
download | soundbox-35ec58bf32d9a8706e9c0e7c42d40a59bd793319.tar soundbox-35ec58bf32d9a8706e9c0e7c42d40a59bd793319.tar.zst soundbox-35ec58bf32d9a8706e9c0e7c42d40a59bd793319.zip |
mech: Set correct position for PCB
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) { |