Plotter.remove_blurring#
- Plotter.remove_blurring() None[source]#
Remove a single blurring pass.
You will need to run this multiple times to remove all blurring passes.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(pv.Sphere())
>>> pl.add_blurring()
>>> pl.remove_blurring()
>>> pl.show()