From 0a58fbb28bb7b9199e8833d47c38951e16e8ee96 Mon Sep 17 00:00:00 2001 From: Elena of Valhalla'' Grandi Date: Wed, 9 Apr 2014 21:40:12 +0200 Subject: Import of existing parts --- parts/straight_connector-rect.scad | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 parts/straight_connector-rect.scad (limited to 'parts/straight_connector-rect.scad') 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); +} -- cgit v1.2.3