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/shell.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/shell.scad')
-rw-r--r-- | mech/pcb_case/shell.scad | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mech/pcb_case/shell.scad b/mech/pcb_case/shell.scad index d7bcecc..231455e 100644 --- a/mech/pcb_case/shell.scad +++ b/mech/pcb_case/shell.scad @@ -1,4 +1,6 @@ -use <common.scad> +use <bolt.scad> +use <nut.scad> +use <rounded_cube.scad> module shell_base(dim, t) { radius = t; |