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

# Create and plot a single cubic line.
from pyvista import examples
grid = examples.cells.CubicLine()
examples.plot_cell(grid)

# List the grid's cells.
grid.cells

# List the grid's points.
grid.points

grid.celltypes  # same as pyvista.CellType.CUBIC_LINE

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

