diff options
Diffstat (limited to 'parts/straight_connector-rect.scad')
-rw-r--r-- | parts/straight_connector-rect.scad | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/parts/straight_connector-rect.scad b/parts/straight_connector-rect.scad new file mode 100644 index 0000000..063b452 --- /dev/null +++ b/parts/straight_connector-rect.scad @@ -0,0 +1,14 @@ + + +radius = 8.25; +wall = 4; +len = 60; + +rotate([0,90,0]) difference() { + intersection() { + cube([(radius + wall)*2, (radius + wall)*2, len], center=true); + cylinder(r=(radius + wall)*sqrt(2)-2, 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); +} |