From 871a8d65f0d92929f64b5feca51b892307bebca9 Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Thu, 21 Nov 2024 15:13:52 +0100 Subject: Initial commit --- cover-spacer.scad | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cover-spacer.scad (limited to 'cover-spacer.scad') 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); + } + } + } +} -- cgit v1.2.3