Leithülse Schleifgerät.scad 181 B

1234567891011
  1. $fn=90;
  2. difference() {
  3. // Hülse mit Kragen
  4. union() {
  5. cylinder(d=20, h=2);
  6. cylinder(d=14.75, h=10);
  7. }
  8. // Durchgangs-Bohrung
  9. cylinder(d=12.1, h=30, center=true);
  10. }