update on slide nut-only design

This commit is contained in:
zhao
2023-06-05 23:27:04 -04:00
parent e14a986e9e
commit cab6d8b13e
20 changed files with 772837 additions and 310030 deletions

View File

@ -12,7 +12,7 @@ include <../config.scad>
// On xBar
module onXBarToYBarNegative() {
y = 27;
z = 6;
z = 8;
slack = xBarYBarDovetailSlack;
translate(v=[-slack,14,0])
@ -35,18 +35,40 @@ module onXBarToYBarNegative() {
translate(v = [-xBarSideThickness, y, z])
rotate(a = [0, -90, 0])
counterSunkHead_N(rackFrameScrewType, screwExtension=inf10, headExtension=inf10);
// lugs for snap fit and hold in place
translate(v=[-0.1,3,13.5])
lug();
translate(v=[-0.1,26,13.5])
lug();
}
module onXBarToYBarPositive() {
// lugs for snap fit and hold in place
translate(v=[-0.1,3,2])
lug();
translate(v=[-0.1,26,2])
lug();
}
// On yBar
module onYBarToXBarNegative() {
y = 27;
z = 6;
z = 8;
translate(v = [-5, y, z])
rotate(a = [180, 0, 0])
rotate(a = [0, 90, 0])
hexNutPocket_N("m3", openSide=false, backSpace=5);
// lugs for snap fit and hold in place
translate(v=[-0.1,3,2])
lug();
translate(v=[-0.1,26,2])
lug();
}
module onYBarToXBarPositive() {
@ -65,8 +87,26 @@ module onYBarToXBarPositive() {
backFaceLength = 5,
backFaceScale = 1.2
);
// lugs for snap fit and hold in place
translate(v=[-0.1,3,13.5])
lug();
translate(v=[-0.1,26,13.5])
lug();
}
xBarConnectorToYBarConnectorTrans = mirror(v=[1,0,0]);
yBarConnectorToXBarConnectorTrans = mirror(v=[-1,0,0]);
yBarConnectorToXBarConnectorTrans = mirror(v=[-1,0,0]);
module lug() {
hull() {
sphere(r=0.5);
translate(v=[0,2,0])
sphere(r=0.5);
}
}