# Examples from pyvista.examples.downloads.download_lshape
# ========================================================

# Load and plot the dataset.
from pyvista import examples
mesh = examples.download_lshape()['all']
warped = mesh.warp_by_vector(factor=30)
warped.plot(scalars='displacement')

# SEE ALSO:
#     Lshape Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#lshape-dataset
#     See this dataset in the Dataset Gallery for more info.

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

