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
Got a compiler error for this which prevented loading the part (a hex-socket metric bolt):
[WARNING: Ignoring unknown variable 'h' in file ../../../../.local/share/OpenSCAD/libraries/base/hex_socket/hex_socket.scad, line 48]
It points to this code:
module hex_socket2(d1,d2,b,k,s,t_min,L,l){ h_unthreaded = (l<= L) ? 0 : l - b; h_threaded = (l<= L) ? l : b; BOLTS_check_dimension_positive(h,"l too short");
Substituting l for h seemingly fixes the problem, but I'm not familiar with the codebase so I'm not entirely confident that that's the cause.
l
h
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Got a compiler error for this which prevented loading the part (a hex-socket metric bolt):
It points to this code:
Substituting
l
forh
seemingly fixes the problem, but I'm not familiar with the codebase so I'm not entirely confident that that's the cause.The text was updated successfully, but these errors were encountered: