# Examples from pyvista.Property.anisotropy
# =========================================

# Get the default anisotropy and visualize it with physically-based rendering.
import pyvista as pv
prop = pv.Property()
prop.anisotropy

prop.interpolation = 'pbr'  # required
prop.plot()

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

