diff options
author | Thomas Albers Raviola <thomas@thomaslabs.org> | 2024-11-21 15:13:52 +0100 |
---|---|---|
committer | Thomas Albers Raviola <thomas@thomaslabs.org> | 2024-11-21 15:13:52 +0100 |
commit | 871a8d65f0d92929f64b5feca51b892307bebca9 (patch) | |
tree | 10a8c4ece76530618c573cec80a0e25d047768f5 /cover-spacer.scad |
Initial commit
Diffstat (limited to 'cover-spacer.scad')
-rw-r--r-- | cover-spacer.scad | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cover-spacer.scad b/cover-spacer.scad new file mode 100644 index 0000000..380f1ca --- /dev/null +++ b/cover-spacer.scad @@ -0,0 +1,16 @@ +// All dimensions are assumed to be given in millimeters + +width = 2 * 3.175; +depth = 11; +diameter = 4.4; + +for (i=[0:1]){ + translate(v=[i * (width + 2), 0, 0]){ + union() { + cube([width, width, depth]); + translate(v=[width/2, width/2, depth + 1.5/2]){ + cylinder(h=1.5, d=diameter, center=true); + } + } + } +} |