14 lines
341 B
OpenSCAD
14 lines
341 B
OpenSCAD
$fn=60;
|
|
|
|
union(){
|
|
difference(){
|
|
translate([0,0,0])cube([40,57,5]);
|
|
translate([20,41,0])cylinder(r=8.5,h=20);
|
|
#translate([10,10,0])cylinder(r=3,h=20);
|
|
#translate([30,10,0])cylinder(r=3,h=20);
|
|
//translate([10,-30,-2])cube([4,20,10]);
|
|
//translate([-14,-30,-2])cube([4,20,10]);
|
|
//translate([-20,-37,0])cube([30,20,10]);
|
|
}
|
|
}
|
|
|