You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to some implementation error, the remeshing algorithm fails to accept zero density regions as decently remeshed.
The offending line (in mesher.py::get_recursive_remesh line 779): if (maxval-minval)<threshold*(minval+maxval):
I would need to check whether just replacing the less than sign with less or equal does not break anything else.
The text was updated successfully, but these errors were encountered:
Due to some implementation error, the remeshing algorithm fails to accept zero density regions as decently remeshed.
The offending line (in mesher.py::get_recursive_remesh line 779):
if (maxval-minval)<threshold*(minval+maxval):
I would need to check whether just replacing the less than sign with less or equal does not break anything else.
The text was updated successfully, but these errors were encountered: