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
Application Version 5.7.2
Platform N/A
Qt N/A
PyQt N/A
Display Driver N/A
Steps to Reproduce
Actual Results Slice failed
Expected results Slice properly
Additional Information
The text was updated successfully, but these errors were encountered:
When boundary avoidence set to 0, voxels below z=0 won't be removed, which caused this error.
Sorry, something went wrong.
One quick solution is to change
CuraEngine/src/InterlockingGenerator.cpp
Lines 203 to 207 in 2f395b0
to
auto voxel_emplacer = [&cells](GridPoint3 p) { if (p.z_< 0) return true; cells.emplace(p); return true; };
No branches or pull requests
Application Version
5.7.2
Platform
N/A
Qt
N/A
PyQt
N/A
Display Driver
N/A
Steps to Reproduce
Actual Results
Slice failed
Expected results
Slice properly
Additional Information
The text was updated successfully, but these errors were encountered: