pyvista.Plotter.disable_anti_aliasing#

Plotter.disable_anti_aliasing(all_renderers=True)[ソース]#

アンチエイリアスを無効にします.

パラメータ:
all_renderersbool, default: True

True の場合,サブプロットのすべてのレンダラーに適用されます. False の場合,アクティブなレンダラーにのみ適用されます.

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

VTK のアンチエイリアシングのアプローチを示す完全な例については, アンチエイリアシング を参照してください.