From 42ffc886165ca070874fa13b105fcbfc266221d9 Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 22 Dec 2023 22:17:57 +0100 Subject: 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. --- mech/common.scad | 1 - mech/pcb_case/common.scad | 14 -------------- mech/pcb_case/panel.scad | 2 +- mech/pcb_case/rounded_cube.scad | 11 +++++++++++ mech/pcb_case/shell.scad | 4 +++- 5 files changed, 15 insertions(+), 17 deletions(-) delete mode 100644 mech/pcb_case/common.scad create mode 100644 mech/pcb_case/rounded_cube.scad diff --git a/mech/common.scad b/mech/common.scad index 0ae93a8..4e05a72 100644 --- a/mech/common.scad +++ b/mech/common.scad @@ -1,4 +1,3 @@ -use use use diff --git a/mech/pcb_case/common.scad b/mech/pcb_case/common.scad deleted file mode 100644 index dfcf909..0000000 --- a/mech/pcb_case/common.scad +++ /dev/null @@ -1,14 +0,0 @@ -use -use - -module rounded_cube(dim, radius) { - range_y = [radius, dim[1]-radius]; - range_z = [radius, dim[2]-radius]; - height = dim[0]; - - hull() { - for (y=range_y, z=range_z) { - translate([0,y,z]) rotate([0,90,0]) cylinder(r=radius, h=height); - } - } -} 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 +use module pcb_case_panel(dim, t) { rounded_cube([t,dim[1]-2*t,dim[2]-2*t], t); diff --git a/mech/pcb_case/rounded_cube.scad b/mech/pcb_case/rounded_cube.scad new file mode 100644 index 0000000..5f1dcee --- /dev/null +++ b/mech/pcb_case/rounded_cube.scad @@ -0,0 +1,11 @@ +module rounded_cube(dim, radius) { + range_y = [radius, dim[1]-radius]; + range_z = [radius, dim[2]-radius]; + height = dim[0]; + + hull() { + for (y=range_y, z=range_z) { + translate([0,y,z]) rotate([0,90,0]) cylinder(r=radius, h=height); + } + } +} 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 +use +use +use module shell_base(dim, t) { radius = t; -- cgit v1.2.3-70-g09d2