pymeshfix.MeshFix.faces#

property MeshFix.faces#

Return the indices of the faces of the mesh.

Returns:

The points of the mesh.

Return type:

numpy.ndarray

Examples

Generate a MeshFix object and return the points.

>>> from pyvista import examples
>>> from pymeshfix import MeshFix
>>> cow = examples.download_cow()
>>> mfix = MeshFix(cow)
>>> mfix.faces
array([[ 210,  252,  251],
       [ 250,  251,  252],
       [ 201,  253,  210],
       ...,
       [1965, 2193, 2194],
       [2391, 2398,  970],
       [ 966,  961,  970]])