Melting Edges
-
I have some code that identifies angles between faces that share an edge.
I would like to build a list of all the edges that pass a certain criteria and then melt them all.
How can I get the index of all those vertexes (I just have the two points that define each one), and select them to perform a melt command? -
Hi @rui_mac, thanks for reaching out us.
With regard to your question I recommend to use:
- CPolygon::EdgePoints() to retrieve the vertex belonging to an edge
- SendModellingCommand: see here on how it is used with regard to melting points.
Best, Riccardo
-
Thank you so much.
I was thinging that I had to provide an edge index.
Never thought that it would just require to select the points that define the edges.
Great!!!