pyvista.PolyData.is_manifold#

property PolyData.is_manifold: bool[source]#

Return if the mesh is manifold (no open edges).

Examples

Show a sphere is manifold.

>>> import pyvista as pv
>>> pv.Sphere().is_manifold
True

Show a plane is not manifold.

>>> pv.Plane().is_manifold
False