aboutsummaryrefslogtreecommitdiff
path: root/parts/straight_connector.scad
diff options
context:
space:
mode:
Diffstat (limited to 'parts/straight_connector.scad')
-rw-r--r--parts/straight_connector.scad11
1 files changed, 11 insertions, 0 deletions
diff --git a/parts/straight_connector.scad b/parts/straight_connector.scad
new file mode 100644
index 0000000..bfe3d29
--- /dev/null
+++ b/parts/straight_connector.scad
@@ -0,0 +1,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);
+}