how to fill hole in mesh #3944
Answered
by
Fedr
Gihong-Yim
asked this question in
Q&A
-
How can I find the vertices of the paths representing holes in a surface of a mesh? Ultimately, I want to implement a 'fill hole' feature to close the desired holes, but I'm curious about how to approach this. I have two holes, and I want to close only the desired one |
Beta Was this translation helpful? Give feedback.
Answered by
Fedr
Jan 7, 2025
Replies: 1 comment
-
Hello, Suppose you have a
Then you can find all holes in it using
Each hole in the mesh will be represented by exactly one of its edge (having that hole to the left) in
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Gihong-Yim
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Suppose you have a
Then you can find all holes in it using
Each hole in the mesh will be represented by exactly one of its edge (having that hole to the left) in
holeRepresEdges
vector. The you can approach your task as follows: