pymeshfix.MeshFix.points#

property MeshFix.points#

Return the points 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.points
pyvista_ndarray([[3.71636 , 2.343387, 0.      ],
                 [4.126565, 0.642027, 0.      ],
                 [3.454971, 2.169877, 0.      ],
                 ...,
                 [4.12616 , 2.12093 , 1.17252 ],
                 [4.133175, 2.175231, 1.259323],
                 [4.232341, 1.903079, 0.534362]], dtype=float32)