# Examples from pyvista.examples.cells.TriangleStrip
# ==================================================

# Create and plot a single triangle strip.
from pyvista import examples
grid = examples.cells.TriangleStrip()
examples.plot_cell(grid, cpos='xy')

# List the grid's cells.
grid.cells

# List the grid's points.
grid.points

grid.celltypes  # same as pyvista.CellType.TRIANGLE_STRIP

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

