Whe offset (Entire model) value is negative then mesh is removed #4520
Answered
by
Grantim
JihoKang24
asked this question in
Q&A
-
hello devs I used offset (EntireModel) with ProjectionNormal (SignDetection) then mesh is removed. this work is correct? result mesh don't have vertices thank you for your helps |
Beta Was this translation helpful? Give feedback.
Answered by
Grantim
May 12, 2025
Replies: 1 comment 3 replies
-
Hello! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
Thanks for digging into it: actually
mode::smooth
andprojectionNormal
are incompatible, in Debug we fire assert at this point, but in release it is not visible. Also it is a bug that this configuration is available in MeshInspector, we will fix it!Here are some explanations:
gridToMesh
(that usesopenvdb
grid input) inside. It builds distance field withopenvdb
methods that can only be signed if the mesh is closed (actually usingSignDetectionMode::OpenVDB
in any case). If mesh is not closed, but signed distanc…