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
If one of the parameters of the modules is undef, it can take for ever to return because of undefined value propagations.
For example :
ScrewThread(12, undef, pitch=0, tooth_angle=30, tolerance=0.4, tip_height=0, tooth_height=0, tip_min_fract=0);
Adding asserts or is_num tests at the relevant points should suffice to avoid it at very low cost.
The text was updated successfully, but these errors were encountered:
I just ran into this as well. Happy to open a PR for at least a couple obvious ones.
Sorry, something went wrong.
Adds safeguards against undefined input values
8c6b77d
Avoids apparent infinite loop when values are undefined due to math or syntax errors in file. See rcolyer#12
No branches or pull requests
If one of the parameters of the modules is undef, it can take for ever to return because of undefined value propagations.
For example :
Adding asserts or is_num tests at the relevant points should suffice to avoid it at very low cost.
The text was updated successfully, but these errors were encountered: