pyvista.DataSetAttributes.active_vectors_name#

property DataSetAttributes.active_vectors_name: str | None[ソース]#

アクティブベクターの名前を返します.

戻り値:
Optional[str]

アクティブベクターの名前.

>>> import pyvista as pv
>>> import numpy as np
>>> mesh = pv.Sphere()
>>> mesh.point_data.set_vectors(
...     np.random.random((mesh.n_points, 3)), 'my-vectors'
... )
>>> mesh.point_data.active_vectors_name
'my-vectors'