diff options
author | xengineering <me@xengineering.eu> | 2024-01-02 17:09:17 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 20:29:40 +0100 |
commit | 5371d56bd722c320c6a76753a6e68d9407cadbe3 (patch) | |
tree | 365cae9f6d1c4b82b783529c17480fc6fc5f0c44 /mech/assembly.scad | |
parent | 285e100abf2ec0736cded36aba938098b1b7bb60 (diff) | |
download | soundbox-5371d56bd722c320c6a76753a6e68d9407cadbe3.tar soundbox-5371d56bd722c320c6a76753a6e68d9407cadbe3.tar.zst soundbox-5371d56bd722c320c6a76753a6e68d9407cadbe3.zip |
mech: pcb_case: Switch shell to PCB-based params
After switching the panel to PCB-based dimensions the shell follows with
this commit.
Diffstat (limited to 'mech/assembly.scad')
-rw-r--r-- | mech/assembly.scad | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/mech/assembly.scad b/mech/assembly.scad index 50d074b..87865eb 100644 --- a/mech/assembly.scad +++ b/mech/assembly.scad @@ -7,15 +7,8 @@ use <pcb_case/panel.scad> module assembly() { pcb(pcb_dim, drillings, margins, t); - pcb_case_shell_bottom( - dim, t, h, [ - base_socket, - base_socket + dx, - base_socket + dy, - base_socket + dx + dy - ] - ); -// pcb_case_shell_top(dim, t); + pcb_case_shell_bottom(pcb_dim, drillings, margins, t); +// pcb_case_shell_top(pcb_dim, margins, t); pcb_case_panel_back(pcb_dim, margins, t); // pcb_case_panel_front(pcb_dim, margins, t); } |