注釈
Go to the end to download the full example code
床を使用してプロットする#
レンダリングシーンの境界に床/壁を追加します.
import pyvista as pv
from pyvista import examples
mesh = examples.download_dragon()
plotter = pv.Plotter()
plotter.add_mesh(mesh)
plotter.add_floor('-y')
plotter.add_floor('-z')
plotter.show()
Total running time of the script: (0 minutes 8.824 seconds)