[Closed] Triangulation in poly face
Hi, is there a way to get how a face in an Editable poly is triangulated? Should be a simple thing but I can’t find anything about it, only how to set a diagonal.
CML
A hack would be to snapshot the geometry as TriMesh in memory, get the vertices of the poly and collect all tri-faces that share these vertices. Then go through all these faces and for each face whose all 3 vertices are in the array of poly vertices, collect the face. This will give you all information about the triangulation of the polygon you might need…
Thanks Bobo, I thought about that too, but that would be too slow since I need to perform it everytime the user clicks to find the intersection position on polygon objects.
I have a function that’s working great on triangulated models…I wish there was a function like: polyop.getTrueFaces $ and polyop.getTrueFaceVerts $…
CML