# Examples from pyvista.PolyDataFilters.curvature
# ===============================================

# Calculate the mean curvature of the hills example mesh and plot it.
from pyvista import examples
hills = examples.load_random_hills()
curv = hills.curvature()
hills.plot(scalars=curv)

# Show the curvature array.
curv

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

