-
|
Hello, MeshLibTeam. I tried using cutMesh to cut a model and found that it did not report any errors, and cutting lines appeared on the model but it did not actually cut. Meshlib version 3.1.1.92
Then I found that when I imported this model into the Inspector, there was no problem with the model.
Cut point data: model: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
It appears that your model has tunnels, so cutting it along the contour does not separate the mesh on two parts, and |
Beta Was this translation helpful? Give feedback.


Hello!
The issue here is that your contour has self-intersections:
MeshLib/source/MRMesh/MRContoursCut.h
Line 76 in 97e0bd8
But you have enabled
ForceFillMeshLib/source/MRMesh/MRContoursCut.h
Line 47 in 97e0bd8
It has lead to tunnels, so
fillContourLeftleaks and fills all of the mesh.You can check it with
cut_result.fbsWithContourIntersections.any().Using
mm.fillContourLeftByGraphCutwill preven…