wip instruction gifs
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user