# Examples from pyvista.ImageData.cell
# ====================================

# Loop over the cells
import pyvista as pv
# Create a grid with 9 points and 4 cells
mesh = pv.ImageData(dimensions=(3, 3, 1))
for cell in mesh.cell:
    cell

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

