注釈
完全なサンプルコードをダウンロードしたり、Binderを使ってブラウザでこのサンプルを実行するには、 最後に進んでください 。
PyVistaのJupyterバックエンドを試す#
PyVista Jupyterバックエンドに慣れる.
import pyvista as pv
# Set/enable the backed
pv.set_jupyter_backend("trame")
pl = pv.Plotter()
pl.add_mesh(pv.ParametricKlein())
pl.show()

(ブラウザで)クライアント側レンダリングのみ
pl = pv.Plotter()
pl.add_mesh(pv.ParametricRandomHills().elevation())
pl.show(jupyter_backend="client")

/home/runner/work/pyvista-tutorial/pyvista-tutorial/tutorial/00_jupyter/jupyter.py:25: UserWarning: Not within a jupyter notebook environment.
Ignoring ``jupyter_backend``.
pl.show(jupyter_backend="client")
サーバー側レンダリングのみ
pl = pv.Plotter()
pl.add_volume(pv.Wavelet())
pl.show(jupyter_backend="server")

/home/runner/work/pyvista-tutorial/pyvista-tutorial/tutorial/00_jupyter/jupyter.py:33: UserWarning: Not within a jupyter notebook environment.
Ignoring ``jupyter_backend``.
pl.show(jupyter_backend="server")
Total running time of the script: (0 minutes 1.179 seconds)