rename connectingBar to yBar, and add mockup of new xBar. Also mess around with the full assembly

This commit is contained in:
zhao
2023-01-08 18:51:11 -05:00
parent 2069f51cd8
commit 407090507d
16 changed files with 305 additions and 150 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]);
}
}