# Examples from pyvista.plotting.widgets.WidgetComponent.add_logo_widget
# ======================================================================

# Add a logo widget to the scene.
import pyvista as pv
pl = pv.Plotter()
_ = pl.add_logo_widget()
_ = pl.add_mesh(pv.Sphere(), show_edges=True)
pl.show()

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

