# Examples from pyvista.OBJReader
# ===============================

import pyvista as pv
from pyvista import examples
from pathlib import Path
filename = examples.download_trumpet(load=False)
Path(filename).name
reader = pv.get_reader(filename)
mesh = reader.read()
mesh.plot(cpos='yz', show_scalar_bar=False)

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

