diff options
author | xengineering <me@xengineering.eu> | 2023-12-22 22:17:57 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 14:24:06 +0100 |
commit | 42ffc886165ca070874fa13b105fcbfc266221d9 (patch) | |
tree | 49a92cbfda22cce99fbe13a6a44cb17122c17968 /mech/pcb_case/panel.scad | |
parent | f333e4282cb6b5ff1c49d3ea68b0af7422a9548e (diff) | |
download | soundbox-42ffc886165ca070874fa13b105fcbfc266221d9.tar soundbox-42ffc886165ca070874fa13b105fcbfc266221d9.tar.zst soundbox-42ffc886165ca070874fa13b105fcbfc266221d9.zip |
mech: pcb_case: Remove common.scad
The filename `common.scad` does not explain anything about its content.
With this commit the last part - rounded_cube - is moved to its own
file.
Diffstat (limited to 'mech/pcb_case/panel.scad')
-rw-r--r-- | mech/pcb_case/panel.scad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mech/pcb_case/panel.scad b/mech/pcb_case/panel.scad index a42f3a8..df4baf1 100644 --- a/mech/pcb_case/panel.scad +++ b/mech/pcb_case/panel.scad @@ -1,4 +1,4 @@ -use <common.scad> +use <rounded_cube.scad> module pcb_case_panel(dim, t) { rounded_cube([t,dim[1]-2*t,dim[2]-2*t], t); |