pyvista.Renderer.add_blurring#
- Renderer.add_blurring() None [ソース]#
ぼかしを入れます.
これを何度か追加することで,ぼかしの度合いを高めることができます.
例
プロッターにぼかしのパスを2回追加して表示します.
>>> import pyvista as pv >>> pl = pv.Plotter() >>> _ = pl.add_mesh(pv.Sphere(), show_edges=True) >>> pl.add_blurring() >>> pl.add_blurring() >>> pl.show()
See ぼかし for a full example using this method.