pyvista.ImageData.is_empty# property ImageData.is_empty: bool[source]# Return True if there are no points. Added in version 0.45. Examples >>> import pyvista as pv >>> mesh = pv.PolyData() >>> mesh.is_empty True Copy to clipboard >>> mesh = pv.Sphere() >>> mesh.is_empty False Copy to clipboard