Lib updates.

This commit is contained in:
2025-12-26 13:25:38 -06:00
parent 78bd6b9738
commit b71f1d2295
3 changed files with 209 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
module m3Nut(h = 2.4, clearance = 0, center=false) {
$fn=6;
cylinder(d=6.35 + 2*clearance, h=h, center=center);
}
module m4Nut(h = 3.2, clearance = 0, center=false) {
$fn=6;
cylinder(d=8.08 + 2*clearance, h=h, center=center);
}