# Examples from pyvista.DataSet.find_cells_within_bounds
# ======================================================

import pyvista as pv
mesh = pv.Cube()
index = mesh.find_cells_within_bounds([-2.0, 2.0, -2.0, 2.0, -2.0, 2.0])

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

