corner protectors in OpenSCAD (6)

Don't just jump in here, start from Part 1! Now it's time for the big finish. For our final decorative flourish, we're going to put a large rounded corner on each of the three surfaces with screw holes in them, with the radius of the corner determined by how close the screw hole is to the edge. To do this we'll need to learn a little about rotate_extrude however, one of the niftier if also more confusing OpenSCAD functions I've had the pleasure of using. And by the way, if you know a little something Read more [...]

corner protectors in OpenSCAD (5)

Don't just jump in here, start from Part 1! So we've basically got fillet edges on our piece now, but you'll notice that the actual corners are sharp and not so great looking. To make the corners look consistent with the edges, we'll need to subtract the exterior of one quarter of a sphere from the corner in the same way we subtracted the exterior of one quarter of a cylinder to get the fillet edge. The code to do such a thing looks like this: difference () { translate([-pad, -pad, -pad]) Read more [...]

corner protectors in OpenSCAD (4)

Don't just jump in here, start from Part 1! So now that we have some screw holes in our protector, it's time to make it pretty. As with many things in life, the last few steps that take the design from functional to aesthetically pleasing are a lot more work than the ones preceding them, but perhaps more fun to see come to life also. A fillet is essentially a curved edge. As far as OpenSCAD is concerned, it's helpful to think of creating this curved edge by subtracting from our object one Read more [...]