pyvista.Plotter.add_blurring#

Plotter.add_blurring()[ソース]#

ぼかしを入れます.

これを何度か追加することで,ぼかしの度合いを高めることができます.

プロッターにぼかしのパスを2回追加して表示します.

>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> _ = pl.add_mesh(pv.Sphere(), show_edges=True)
>>> pl.add_blurring()
>>> pl.add_blurring()
>>> pl.show()
../../../_images/pyvista-Plotter-add_blurring-1_00_00.png

このメソッドを使った例は, ぼかし をご覧ください.