summaryrefslogtreecommitdiff
path: root/mech/pcb_case/common.scad
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-12-22 22:17:57 +0100
committerxengineering <me@xengineering.eu>2024-01-02 14:24:06 +0100
commit42ffc886165ca070874fa13b105fcbfc266221d9 (patch)
tree49a92cbfda22cce99fbe13a6a44cb17122c17968 /mech/pcb_case/common.scad
parentf333e4282cb6b5ff1c49d3ea68b0af7422a9548e (diff)
downloadsoundbox-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/common.scad')
-rw-r--r--mech/pcb_case/common.scad14
1 files changed, 0 insertions, 14 deletions
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 <bolt.scad>
-use <nut.scad>
-
-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);
- }
- }
-}