# Examples from pyvista.Property.interpolation
# ============================================

# Get the default interpolation and visualize it.
import pyvista as pv
prop = pv.Property()
prop.interpolation
prop.plot()

# Visualize gouraud shading.
prop.interpolation = 'gouraud'
prop.plot()

# Visualize phong shading.
prop.interpolation = 'phong'
prop.plot()

# Visualize physically based rendering.
prop.interpolation = 'pbr'
prop.plot()

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

