aboutsummaryrefslogtreecommitdiff
path: root/parts/straight_connector.scad
blob: bfe3d299297fcc02cb95eed7999ff9557b0601e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
radius = 8.25;
wall = 6;
len = 60;

rotate([0,90,0]) difference() {
    cylinder(r=radius + wall, h=len, center=true);
    translate([0,0,len/2+wall/2]) cylinder(r=radius, h=len, center=true);
    translate([0,0,-len/2-wall/2]) cylinder(r=radius, h=len, center=true);
}