Rehau-Schluessel.scad 287 B

1234567891011121314
  1. $fn=90;
  2. SW=14;
  3. difference() {
  4. union() {
  5. rotate([0,0,30]) cylinder(r=SW/sqrt(3), h=8, $fn=6);
  6. mirror([0,0,1]) {
  7. cylinder(d=16, h=12);
  8. for(i=[0:360/36:359]) rotate([0,0,i]) translate([8,0,0]) cylinder(d=2, h=12, $fn=4);
  9. }
  10. }
  11. cylinder(d=9, h=40, center=true);
  12. }