diff options
author | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-04-10 15:17:39 +0200 |
---|---|---|
committer | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-04-10 15:17:39 +0200 |
commit | 58f906f2f17d28626c26f006a9f306fc5b06068c (patch) | |
tree | a7fb6431dff3ef36c58255539c6652d00a130dc1 /parts | |
parent | cc7c1a7807957c6ae5501befc230c7b1ddc4ddf9 (diff) |
triangular connector: rotated variants
Diffstat (limited to 'parts')
-rw-r--r-- | parts/triangular_connector.scad | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/parts/triangular_connector.scad b/parts/triangular_connector.scad index 4c7607f..9249639 100644 --- a/parts/triangular_connector.scad +++ b/parts/triangular_connector.scad @@ -4,6 +4,9 @@ wall = 6; top_wall = 6; len = 40; +rotation = [0,105,0]; +//rotation = [0,0,0]; + module external(radius, wall, len, top_wall) { w = len/2+radius+(radius+wall)*sin(60) ; h = (radius + wall) / 2; @@ -17,7 +20,7 @@ module tube(radius, wall, len) { translate([-len/2-radius,0,0]) rotate([0,30,0]) translate([0,0,-wall/2]) cylinder(r = radius, h = len); } -rotate([0,105,0]) difference() { +rotate(rotation) difference() { union() { hull() { //external(radius, wall, len, top_wall); |