Allow $fn value to be passed in via argument.

This commit is contained in:
mmcwilliams 2020-05-29 09:05:47 -04:00
parent b8a8ec67e1
commit 7c01705785
1 changed files with 2 additions and 2 deletions

View File

@ -153,9 +153,9 @@ module gnal_50ft_top () {
}
FN = 200;
module film_guide (rotations = 40, id = 45.55, spacing = 2.075) {
$fn = 200;
$fn = FN;
spiral(rotations, id, spacing, $fn);
}