Files
rackstack/rack2/helper/cylindricalFilet.scad
2023-01-03 00:30:45 -05:00

16 lines
312 B
OpenSCAD

module cylindricalFiletEdge(width, depth, height, roundness) {
rd = roundness;
intersection() {
minkowski() {
rotate(a = [90, 0, 0])
cylinder(r = rd, h = eps);
translate(v = [rd, 0, rd])
cube(size = [width, depth, height]);
}
cube(size = [width, depth, height]);
}
}