Spangenzubehoer/mod_Tools.scad

11 lines
165 B
OpenSCAD
Raw Normal View History

2024-03-20 22:39:40 +01:00
module roundbox(w,h,d) {
minkowski(){
cube([w,h,d]);
sphere(sphere);
}
}
module mirror_copy(v = [0, 1, 0]) {
children();
mirror(v) children();
}