Tankreiniger.scad 580 B

123456789101112131415161718192021222324
  1. $fn=60;
  2. use <gardena.scad>;
  3. difference() {
  4. union() {
  5. translate([0,0,28/2]) {
  6. cylinder(d=19.7, h=20);
  7. translate([0,0,19]) gardena_nippel();
  8. }
  9. difference() {
  10. sphere(d=35);
  11. cylinder(d=2, h=50, center=true);
  12. for (i=[0:360/8:359]) rotate([0,0,i]) rotate([30,0,0]) cylinder(d=2, h=50, center=true);
  13. for (i=[0:360/12:359]) rotate([0,0,i]) {
  14. rotate([60,0,0]) cylinder(d=2, h=50, center=true);
  15. rotate([90,0,0]) cylinder(d=2, h=50, center=true);
  16. }
  17. }
  18. }
  19. hull() {
  20. sphere(d=9);
  21. cylinder(d=9, h=80);
  22. }
  23. }