work on connectingBar

This commit is contained in:
zhao
2023-01-02 23:55:26 -05:00
parent 1b923fa215
commit 5d4252b62d
7 changed files with 197 additions and 55 deletions

View File

@ -0,0 +1,15 @@
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]);
}
}