A few OpenSCAD sample files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
386 B

rotate_extrude(convexity = 10, $fn = 100) {
translate([100, 0]) {
scale([-1, 1]) {
difference() {
square([40,40]);
polygon(points=[[-1,-1],[-1,5],[5,-1]]);
polygon(points=[[-1,41],[-1,36],[5,41]]);
translate([7,7]) square([26,34]);
}
translate([33, 33]) circle(r=5);
polygon(points=[[40, 40],[40,30],[42,35]]);
}
}
}