| 12345678910111213141516171819 |
- module sub(){
- translate([30,10,0]){
- hull(){
- translate([2,0,0]){cylinder(r=5, h=150);}
- translate([-38,35,0]){cylinder(r=5, h=150);}
- translate([23,0,0]){cylinder(r=5, h=150);}
- translate([63,35,0]){cylinder(r=5, h=150);}
- };
- }
- }
- module add(){
- cube([85,25,150]);
- }
- difference(){
- add();
- sub();
- }
|