Guest User

Untitled

a guest
Aug 4th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. cubesize=26;
  2.  
  3.  
  4. module shp() {
  5. translate([0,0,22.62])
  6. rotate([90,140,90])
  7. ClosePoints(shape);
  8. }
  9.  
  10.  
  11. module extrusion() {
  12.  
  13. translate([0,7,0])
  14. rotate([90,0,0])
  15. linear_extrude(height=20)
  16. projection(cut = false)
  17. rotate([-90,0,0])
  18. intersection() {
  19. shp();
  20. cube([cubesize+100,cubesize,cubesize+100], center=true);
  21. }
  22. }
  23.  
  24. module cleaner() {
  25. difference() {
  26. hull() {
  27. shp();
  28. translate([0,0,10]) shp();
  29. }
  30. shp();
  31. }
  32. }
  33.  
  34. difference() {
  35. union() {
  36. shp();
  37. extrusion();
  38. }
  39. cleaner();
  40. }
  41.  
Advertisement
Add Comment
Please, Sign In to add comment