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.
This commit is contained in:
Marcello Pires Alves
2021-07-11 07:02:39 -03:00
committed by GitHub
parent 931d519f2a
commit dfe2266f44

View File

@@ -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);
}