# Examples from pyvista.Plotter.add_blurring
# ==========================================

# Add two blurring passes to the plotter and show it.
import pyvista as pv
pl = pv.Plotter()
_ = pl.add_mesh(pv.Sphere(), show_edges=True)
pl.add_blurring()
pl.add_blurring()
pl.show()

# See Blurring for a full example using this method.

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

