Files
rackstack/rack/assembly/attachXYTrays.scad

37 lines
852 B
OpenSCAD

include <./common.scad>
use <./attachSideConnectorModulesToYBars.scad>
use <./propUpBottomXYTraywithSideWalls.scad>
$vpt = [115,58,113];
$vpr = [98,0,17];
$vpd = 620;
$vpf = 22.50;
attachXYTrays(at=$t);
module attachXYTrays(at=0,r=0) {
t1 = lerp(a=12, b=0, t=min(1, 2*at));
t2 = lerp(a=16, b=0, t=max(0, 2*at - 1));
module singleScrew() {
translate(v = [mainRailSlideHexOnYBarDx, mainRailSlideHexOnYBarDy, -5])
rotate(a=[-45,0,0])
translate(v=[0,0,14 + t2]) // length of caseScrewLong
caseScrewMedium();
}
translate(v=[0,0,t1])
multmatrix(upperXYTrayTrans) {
attachSideConnectorModulesToYBars(at=1);
if (at >= 1/2) {
mirrorAllTrayCornersFromYBarSpace()
multmatrix(yBarMainRailConnectorTrans)
singleScrew();
}
}
propUpBottomXYTraywithSideWalls(at=1,r=r);
}