pyvista.Renderer.add_blurring#

Renderer.add_blurring()[source]#

Add blurring.

This can be added several times to increase the degree of blurring.

Examples

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()
https://d33wubrfki0l68.cloudfront.net/147f7ad0b723cc8f9f95f6cc5c6e895fe1ecf4d6/bb259/_images/pyvista-renderer-add_blurring-1_00_00.png

See Blurring for a full example using this method.