API Reference
Return if the mesh is manifold (no open edges).
Examples
Show a sphere is manifold.
>>> import pyvista >>> pyvista.Sphere().is_manifold True
Show a plane is not manifold.
>>> pyvista.Plane().is_manifold False