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,16 @@
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]);
}
}