finish up side wall and hinge

This commit is contained in:
zhao
2023-03-12 00:27:13 -05:00
parent 2ddc90dd4d
commit 8a88c244eb
8 changed files with 52 additions and 10 deletions

View File

@ -109,6 +109,22 @@ module sideWallBase() {
}
module applyHandle() {
children(0);
handleWidth = 8;
handleLength = 60;
handleRoundness = 7;
widthOffset = 3;
apply_n() {
minkowski() {
sphere(r=handleRoundness);
translate(v = [sideWallX -(handleWidth-handleRoundness) + widthOffset, 0, (sideWallZ-handleLength)/2])
cube(size = [handleWidth-handleRoundness, sideWallThickness, handleLength-handleRoundness]);
}
children(0);
}
}
}