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 >>> pyvista.Sphere().is_manifold True Show a plane is not manifold. >>> pyvista.Plane().is_manifold False