From 92371c60548fbfbb25b480c2f2823934ce1ba088 Mon Sep 17 00:00:00 2001 From: Elena of Valhalla'' Grandi Date: Fri, 24 Oct 2014 13:44:40 +0200 Subject: T-connector --- lib/connectors.scad | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/connectors.scad') diff --git a/lib/connectors.scad b/lib/connectors.scad index 063bcaa..58bf259 100644 --- a/lib/connectors.scad +++ b/lib/connectors.scad @@ -35,3 +35,15 @@ module foot(radius,wall,len,foot_radius,foot_height,angle,hole_radius,hole_dist, } } } + +module t_connector(radius, wall, len, angle) { + rotate([90,0,0]) difference() { + union() { + cylinder(r=radius + wall, h=len*2, center=true); + rotate([0, angle, 0]) cylinder(r=radius + wall, h=len); + } + 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); + rotate([0, angle, 0]) translate([0, 0, radius+wall]) cylinder(r=radius, h=len); + } +} -- cgit v1.2.3