# Examples from pyvista.AVSucdReader
# ==================================

import pyvista as pv
from pyvista import examples
from pathlib import Path
filename = examples.download_cells_nd(load=False)
Path(filename).name
reader = pv.get_reader(filename)
mesh = reader.read()
mesh.plot(cpos='xy')

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

