
This part sits on top of our Grohe shower rail and holds the shower head while I shower. I'm a bit taller than my wife and always had to stoop a little — even with the other holder pushed all the way up. Now everyone has their own holder and all is well! ;)
By the way, the pin on the left of the image is a hook for my wife's soap bag. For a bonus point in married life.
// wall thickness
a = 7;
// diameter shower pole
b = 23;
// height shower pole adapter
c = 38;
$fn=80;
translate([-35,0,28])
#cylinder(h=14,d=6);
difference() {
union() {
cylinder(d=b+2*a, h=c);
translate([-c/2-22,0,(b+2*a)/2])
rotate([0,90,0])
cylinder(d=b+2*a, h=c*2-14+22);
}
cylinder(d=b, h=c);
translate([b+2*a,c/2-9,0])
rotate([28,0,0])
cylinder(d1=18,d2=24,h=b+2*a+8);
translate([0,-(b+2*a)/2-1,0])
rotate([0,90,90])
cylinder(d=40, h=b+2*a+2);
translate([-55,-20,20])
rotate([0,-30,0])
cube([40,40,40]);
}


