# Examples from pyvista.XMLStructuredGridReader
# =============================================

import pyvista as pv
from pyvista import examples
from pathlib import Path
filename = examples.download_structured_grid(load=False)
Path(filename).name
reader = pv.get_reader(filename)
mesh = reader.read()
mesh.plot(style='wireframe', line_width=4, show_scalar_bar=False)

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

