pyvista.Plotter.update_coordinates#
- Plotter.update_coordinates(points, mesh=None, render=True)[ソース]#
プロッタのオブジェクトの点を更新します.
バージョン 0.43.0 で非推奨: このメソッドは非推奨であり,PyVistaの将来のバージョンで削除される予定です.機能的には,メッシュの点をインプレースで直接変更するのと同等です.
# Modify the points in place mesh.points = points # Explicitly call render if needed plotter.render()
- パラメータ:
- points
np.ndarray
既存のポイントを置き換えるポイント.
- mesh
vtk.PolyData
|vtk.UnstructuredGrid
,optional
既にプロッタに追加されているオブジェクト.
None
の場合,最後に追加されたメッシュが使用されます.- renderbool, default:
True
True のときに強制的にレンダーします.
- points