klemmschraube.scad 251 B

123456789101112
  1. $fn=120;
  2. difference() {
  3. union() {
  4. cylinder(d=25, h=15, center=true);
  5. intersection() {
  6. cylinder(r=25/sqrt(3), h=12, center=true, $fn=6);
  7. cylinder(r=0.95*25/sqrt(3), h=12, center=true);
  8. }
  9. }
  10. cylinder(d=18, h=20, center=true);
  11. }