Material GetFaceMaterial( FaceHandle hFace )

book_4_sparkGenerated
code_blocksInput

Description

The GetFaceMaterial method retrieves the material associated with a specific face in a PolygonMesh. This is useful for determining the visual appearance of a particular face within the mesh.

Usage

To use the GetFaceMaterial method, you need to have a HalfEdgeMesh.FaceHandle that identifies the face whose material you want to retrieve. This method returns a Sandbox.Material object representing the material applied to the specified face.

Example

// Assume 'polygonMesh' is an instance of PolygonMesh
// and 'faceHandle' is a valid FaceHandle for a face in the mesh.

Material faceMaterial = polygonMesh.GetFaceMaterial(faceHandle);

// Now 'faceMaterial' holds the material used by the specified face.