# Examples from pyvista.PolyData.regular_faces
# ============================================

# Get the regular face array of a plane with 2x2 arrangement of cells
# as a 4x4 array.
import pyvista as pv
plane = pv.Plane(i_resolution=2, j_resolution=2)
plane.regular_faces

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

