diff options
author | xengineering <me@xengineering.eu> | 2024-01-01 23:41:18 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 20:26:15 +0100 |
commit | 285e100abf2ec0736cded36aba938098b1b7bb60 (patch) | |
tree | faf488a51990b7e87ee0b2d168e1c3f5ce13051b /mech/production.scad | |
parent | 84796898e32af3374f5e8ce22e686e04f6f6d11e (diff) | |
download | soundbox-285e100abf2ec0736cded36aba938098b1b7bb60.tar soundbox-285e100abf2ec0736cded36aba938098b1b7bb60.tar.zst soundbox-285e100abf2ec0736cded36aba938098b1b7bb60.zip |
mech: pcb_case: Switch panel to PCB-based params
The whole case should move from case- to PCB-based parameters.
Diffstat (limited to 'mech/production.scad')
-rw-r--r-- | mech/production.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mech/production.scad b/mech/production.scad index 471b3c0..52e4ece 100644 --- a/mech/production.scad +++ b/mech/production.scad @@ -23,12 +23,12 @@ module production() { translate([-spacing, dim[1]+spacing, 0]) rotate([0, -90, 0]) translate([-t, -t, -t]) - pcb_case_panel_back(dim, t); + pcb_case_panel_back(pcb_dim, margins, t); translate([dim[0], dim[1]+spacing, 0]) rotate([0, -90, 0]) translate([2*t-dim[0], -t, -t]) - pcb_case_panel_front(dim, t); + pcb_case_panel_front(pcb_dim, margins, t); } production(); |