diff options
author | xengineering <me@xengineering.eu> | 2023-12-23 16:57:42 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 14:24:06 +0100 |
commit | 5f0b6e8bf4285c9945bccc69dc23fa020a51fcea (patch) | |
tree | d3989714ccba6868f9eeea58515e90ed0da339ef /mech | |
parent | ee5994c2b09272bd192e1c74ac56f6333ff1cc0b (diff) | |
download | soundbox-5f0b6e8bf4285c9945bccc69dc23fa020a51fcea.tar soundbox-5f0b6e8bf4285c9945bccc69dc23fa020a51fcea.tar.zst soundbox-5f0b6e8bf4285c9945bccc69dc23fa020a51fcea.zip |
mech: Rename common.scad to parameters.scad
The old name was not descriptive and now the file contains only
parameters.
Diffstat (limited to 'mech')
-rw-r--r-- | mech/back.scad | 2 | ||||
-rw-r--r-- | mech/bottom.scad | 2 | ||||
-rw-r--r-- | mech/front.scad | 2 | ||||
-rw-r--r-- | mech/parameters.scad (renamed from mech/common.scad) | 0 | ||||
-rw-r--r-- | mech/top.scad | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/mech/back.scad b/mech/back.scad index ef541cb..ec9924e 100644 --- a/mech/back.scad +++ b/mech/back.scad @@ -1,4 +1,4 @@ -include <common.scad> +include <parameters.scad> use <pcb_case/panel.scad> diff --git a/mech/bottom.scad b/mech/bottom.scad index 195244f..03c2426 100644 --- a/mech/bottom.scad +++ b/mech/bottom.scad @@ -1,6 +1,6 @@ use <pcb_case/shell.scad> -include <common.scad> +include <parameters.scad> module bottom() { union () { diff --git a/mech/front.scad b/mech/front.scad index aca7e23..f079beb 100644 --- a/mech/front.scad +++ b/mech/front.scad @@ -1,4 +1,4 @@ -include <common.scad> +include <parameters.scad> use <pcb_case/panel.scad> diff --git a/mech/common.scad b/mech/parameters.scad index eb2d368..eb2d368 100644 --- a/mech/common.scad +++ b/mech/parameters.scad diff --git a/mech/top.scad b/mech/top.scad index 114ae16..7922f70 100644 --- a/mech/top.scad +++ b/mech/top.scad @@ -1,4 +1,4 @@ -include <common.scad> +include <parameters.scad> use <pcb_case/shell.scad> |