JMBCupHolder.scad 299 B

12345678910111213141516171819
  1. module sub(){
  2. translate([30,10,0]){
  3. hull(){
  4. translate([2,0,0]){cylinder(r=5, h=150);}
  5. translate([-38,35,0]){cylinder(r=5, h=150);}
  6. translate([23,0,0]){cylinder(r=5, h=150);}
  7. translate([63,35,0]){cylinder(r=5, h=150);}
  8. };
  9. }
  10. }
  11. module add(){
  12. cube([85,25,150]);
  13. }
  14. difference(){
  15. add();
  16. sub();
  17. }