Flextail-Vakkum-Sack-Adapter.scad 514 B

1234567891011121314151617181920
  1. use <threads.scad>
  2. $fn=180;
  3. // Adapter für Staubsaugerdüse:
  4. intersection() {
  5. difference() {
  6. union(){
  7. cylinder(d1=31, d2=29, h=25);
  8. translate([0,0,9]) cylinder(d=23.7, h=2.65);
  9. }
  10. translate([0,0,-0.001]) union(){
  11. metric_thread (diameter=25, pitch=1, length=8, internal=true, test=false);
  12. translate([0,0,8-0.001]) cylinder(d=24, h=35);
  13. cylinder(d=24.5, h=1);
  14. }
  15. }
  16. // Für Test, ob Gewinde passt, kurz abschneiden:
  17. translate([0,0,-0.001]) cylinder(d=40, h=9);
  18. }