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

# Create and plot a single convex point set.
from pyvista import examples
grid = examples.cells.ConvexPointSet()
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.CONVEX_POINT_SET

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

