Mesh -face

Hello friends
I want to access the faces of a mesh, but I can’t deconsturct mesh.

That depends on what you are trying to get, are you trying to get the surface of the face, or the points that make up the face or the edges.
Also why can’t you use deconstruct mesh to get the information?

Using DeconstructMesh gives you MeshFaces in the form of indices to the corners of the MeshFace, so you need to use ConstructMesh providing the Vertices for the MeshFace as well, like so:

// Rolf

2 Likes