pyvista.Texture.interpolate#

property Texture.interpolate: bool[ソース]#

補間処理が有効か無効かを返します.

石積みのテクスチャーを補間なしで表示します.ここでは,個々のピクセルを表示するためにズームしています.

>>> from pyvista import examples
>>> texture = examples.download_masonry_texture()
>>> texture.interpolation = False
>>> texture.plot(cpos='xy', zoom=3)
../../../_images/pyvista-Texture-interpolate-1_00_00.png

同じテクスチャーを補間してプロットします.

>>> texture.interpolation = True
>>> texture.plot(cpos='xy', zoom=3)
../../../_images/pyvista-Texture-interpolate-1_01_00.png