summaryrefslogtreecommitdiff
path: root/enclosure/lyza/standoffs.scad
blob: 61d3ef4844d1ad61d22020470818293fbec9158c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
inner_dia = 3.0;
outer_dia = inner_dia + 2*1.5;
height    = 18.0;
eps       = 0.1;

module standoff() {
    difference() {
        cylinder(h=height, d=outer_dia);
        translate([0, 0, -eps]) cylinder(h=height+2*eps, d=inner_dia);
    }
}

module standoff_group() {
    standoff();
}

standoff_group($fn=25);