aboutsummaryrefslogtreecommitdiff
path: root/cover-spacer.scad
diff options
context:
space:
mode:
Diffstat (limited to 'cover-spacer.scad')
-rw-r--r--cover-spacer.scad16
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);
+ }
+ }
+ }
+}