# Examples from pyvista.ImageData.n_cells
# =======================================

# Create a mesh and return the number of cells in the
# mesh.
import pyvista as pv
cube = pv.Cube()
cube.n_cells

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

