# Examples from pyvista.get_reader
# ================================

import pyvista as pv
from pyvista import examples
from pathlib import Path
filename = examples.download_human(load=False)
Path(filename).name
reader = pv.get_reader(filename)
reader
mesh = reader.read()
mesh
mesh.plot(color='lightblue')

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

