Advertisement
holger22

Untitled

Nov 24th, 2021
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1.  
  2. difference() {
  3. union() {
  4. cube([100,100,10]);
  5.  
  6. translate([20,20,0])
  7. cylinder(r=10,h=20);
  8.  
  9. translate([80,20,0])
  10. cylinder(r=10,h=20);
  11.  
  12. translate([80,80,0])
  13. cylinder(r=10,h=20);
  14.  
  15. translate([20,80,0])
  16. cylinder(r=10,h=20);
  17. }
  18. union() {
  19. translate([20,20,0])
  20. cylinder(r=5,h=20);
  21.  
  22. translate([80,20,0])
  23. cylinder(r=5,h=20);
  24.  
  25. translate([80,80,0])
  26. cylinder(r=5,h=20);
  27.  
  28. translate([20,80,0])
  29. cylinder(r=5,h=20);
  30. }
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement