zyklon-ht125-mount.scad 350 B

12345678910111213
  1. $fn=120;
  2. difference() {
  3. union() {
  4. cylinder(d=133, h=40);
  5. cylinder(d=185, h=4);
  6. }
  7. cylinder(d=125, h=100, center=true);
  8. for(r=[0:360/6:359]) rotate([0,0,r]) union() {
  9. translate([81,0,0]) cylinder(d=6.5, h=20, center=true);
  10. rotate([0,0,360/6/2]) translate([125/2,0,25]) rotate([0,90,0]) cylinder(d=6.5, h=20, center=true);
  11. }
  12. }