Commit 3a9ab9bd by Kai Westerkamp

l

parent 7c84a9ad
Pipeline #268 passed with stage
in 6 minutes 34 seconds
......@@ -3,6 +3,17 @@ module base(){
difference() {
cube([70,4,66]);
cube([10,4,10]);
// translate([60,-4,56]) cube([10,4,10]);
translate([60,0,56]) cube([10,4,10]);
}
}
\ No newline at end of file
}
module HohlZylinder(size=10, thickness = 5){
difference() {
cylinder(30,size,size,false);
cylinder(30,size-thickness,size-thickness,false);
}
}
base();
translate([35,4,33]) rotate([-90,0,0]) HohlZylinder(20,5);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment