From dfe2266f4419549711c43feac625a094dc3e01a5 Mon Sep 17 00:00:00 2001 From: Marcello Pires Alves Date: Sun, 11 Jul 2021 07:02:39 -0300 Subject: [PATCH] pass fn in call to straight_thread() (#50) Addressing issue #46: "fn needs to be passed in call to straight_thread()". I just added the missing "fn=fn," line 36. That should take care of the issue. I tested locally and it seems to be fine, now specifying fn in bolt(), nut() and tap() work as expected. --- threadlib.scad | 1 + 1 file changed, 1 insertion(+) diff --git a/threadlib.scad b/threadlib.scad index 39e91d0..7ba1b58 100644 --- a/threadlib.scad +++ b/threadlib.scad @@ -33,6 +33,7 @@ module thread(designator, turns, higbee_arc=20, fn=120, table=THREAD_TABLE) higbee_arc=higbee_arc, r=Rrotation, turns=turns, + fn=fn, pitch=P); }