pyvista.DataSet.set_active_tensors

pyvista.DataSet.set_active_tensors#

DataSet.set_active_tensors(
name: str | None,
preference: Literal[FieldAssociation.POINT, 'point', FieldAssociation.CELL, 'cell'] = 'point',
) None[source]#

Find the tensors by name and appropriately sets it as active.

To deactivate any active tensors, pass None as the name.

Parameters:
namestr, optional

Name of the tensors array to assign as active.

preferencestr, default: “point”

If there are two arrays of the same name associated with points, cells, or field data, it will prioritize an array matching this type. Can be either 'cell', 'field', or 'point'.