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

from pyvista import examples
import pyvista as pv
mesh = examples.download_victorian_goblet_face_illusion()
pl = pv.Plotter(lighting='none')
_ = pl.add_mesh(mesh, edge_color='gray', color='white', show_edges=True)
_ = pl.add_floor('-x', color='black')
pl.enable_parallel_projection()
pl.show(cpos='yz')

# SEE ALSO:
#     Victorian Goblet Face Illusion Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#victorian-goblet-face-illusion-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

