wip instruction gifs

This commit is contained in:
zhao
2023-05-13 00:06:42 -04:00
parent ac9cd7c96e
commit b54786cb9d
130 changed files with 73 additions and 49 deletions

View File

@ -90,6 +90,7 @@ module counterSunkHead_N(screwType, screwExtension=0, headExtension=0) {
}
module hexNut(screwType) {
color([0, 1, 1])
if (screwType == "m3") {
translate(v=[0,0,-m3HexNutThickness/2])
difference() {
@ -101,6 +102,28 @@ module hexNut(screwType) {
}
}
module heatSetInsert(screwType) {
color([0, 1, 1])
if (screwType == "m3") {
difference() {
union() {
cylinder(h = m3HeatSetInsertSlotHeight, r = m3HeatSetInsertSlotRadius);
// teeth
for (i=[0:8]) {
rotate(a=[0,0,360/8 * i])
cube(size = [2.5, 0.5, m3HeatSetInsertSlotHeight]);
}
}
cylinder(h = inf10, r = m3Radius);
}
}
}
module hexNutPocket_N(screwType, openSide=true) {
if (screwType == "m3") {
hexNutPocketHelper_N(m3RadiusSlacked, m3HexNutWidthAcrossCorners / 2 + 0.3, m3HexNutThickness + 0.3, openSide=openSide);