11 lines
313 B
OpenSCAD
11 lines
313 B
OpenSCAD
$fn=200;
|
|
|
|
rotate([180,0,0])union() {
|
|
difference () {
|
|
cube ([168,105,23]);
|
|
translate([150,25,-0.5])cube ([20,55,20.5]);
|
|
translate([-0.5,-0.5,-0.5])cube ([10,106,10]);
|
|
}
|
|
translate([163,24.5,15])cube ([5,56,5.5]);
|
|
translate([165.5,80,15])rotate([90,0,0])cylinder(h=56,d=5);
|
|
}
|