# Examples from pyvista.LookupTable
# =================================

# Plot the lookup table with the default VTK color map.
import pyvista as pv
lut = pv.LookupTable()
lut
lut.plot()

# Plot the lookup table with the `'inferno'` color map.
import pyvista as pv
lut = pv.LookupTable('inferno', n_values=32)
lut
lut.plot()

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

