delete self intersecting faces and fill the hole #3226
Answered
by
Grantim
dhanraj-khatal
asked this question in
Q&A
-
I want to delete the self-intersecting faces of mesh and fill the gap can you provide me any examples in python |
Beta Was this translation helpful? Give feedback.
Answered by
Grantim
Aug 23, 2024
Replies: 1 comment
-
Hello! There are such functions:
see example here: https://github.com/MeshInspector/MeshLib/blob/master/test_python/test_fillHole.py Actually we have function that performs this kind of fixing self-intersections: https://github.com/MeshInspector/MeshLib/blob/master/test_python/test_fixSelfIntersections.py |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dhanraj-khatal
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
There are such functions:
see example here: https://github.com/MeshInspector/MeshLib/blob/master/test_python/test_fillHole.py
Actually we have function that performs this kind of fixing self-intersections: https://github.com/MeshInspector/MeshLib/blob/master/test_py…