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