# Examples from pyvista.Plotter.add_legend_scale
# ==============================================

import pyvista as pv
cone = pv.Cone(height=2.0, radius=0.5)
pl = pv.Plotter()
_ = pl.add_mesh(cone)
_ = pl.add_legend_scale()
pl.show()

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

