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

34
rack2/xBar.scad Normal file
View File

@ -0,0 +1,34 @@
include <../helper/sphericalFilet.scad>
include <../helper/cylindricalFilet.scad>
include <./config.scad>
include <./screws.scad>
xBarDepth = 180;
xBarWidth = 32;
xBarHeight = 15;
xBarWallThickness = 3;
xBarRoundness = 5;
module xBar() {
module positive() {
mirror(v=[0,1,0])
rotate(a=[0,0,-90])
difference() {
cylindricalFiletEdge(xBarWidth, xBarDepth, xBarHeight, xBarRoundness);
translate(v = [xBarWallThickness, xBarWallThickness, xBarWallThickness])
cylindricalFiletEdge(xBarWidth, xBarDepth - 2*xBarWallThickness, xBarHeight, xBarRoundness);
}
}
module xBar() {
positive();
}
xBar();
}
//xBar();