We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I import Threaded Library/Thread_Library.scad, I'm getting a warning about the arguments being passed in to cylinder() at line 222.
cylinder()
The code that's in master is:
master
cylinder( h=2*countersunk*pitch, r1=pitchRadius+clearance*pitch+0.25*pitch, r2=pitchRadius+clearance*pitch+0.25*pitch+2*countersunk*pitch,$fn=24, $fn=24 );
Is there an extra $fn=24 here?
$fn=24
Should it be:
cylinder( h=2*countersunk*pitch, r1=pitchRadius+clearance*pitch+0.25*pitch, r2=pitchRadius+clearance*pitch+0.25*pitch+2*countersunk*pitch, $fn=24 );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I import Threaded Library/Thread_Library.scad, I'm getting a warning about the arguments being passed in to
cylinder()
at line 222.The code that's in
master
is:Is there an extra
$fn=24
here?Should it be:
The text was updated successfully, but these errors were encountered: