Files
rackstack/cases/rack2/helper/sphericalFilet.scad
2023-01-02 23:55:26 -05:00

16 lines
283 B
OpenSCAD

module sphericalFiletEdge(width, depth, height, roundness) {
rd = roundness;
intersection() {
minkowski() {
sphere(r = rd);
translate(v = [rd, rd, rd])
cube(size = [width*2, depth - 2*rd, height*2]);
}
cube(size = [width, depth, height]);
}
}