aboutsummaryrefslogtreecommitdiff
path: root/cover-spacer.scad
blob: 380f1ca42b51da783e517dab150bf003dd081456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
            }
        }
    }
}