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

# Create and plot a single poly vertex.
from pyvista import examples
grid = examples.cells.PolyVertex()
examples.plot_cell(grid)

# List the grid's cells. This could be any number of points.
grid.cells

# List the grid's points.
grid.points

grid.celltypes  # same as pyvista.CellType.POLY_VERTEX

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

