active_t_coords#
- property DataSetAttributes.active_t_coords: Optional[pyvista.core.pyvista_ndarray.pyvista_ndarray]#
Return or set the active texture coordinates array.
- Returns
pyvista.pyvista_ndarray
Array of the active texture coordinates.
Examples
>>> import pyvista >>> mesh = pyvista.Cube() >>> mesh.point_data.active_t_coords pyvista_ndarray([[ 0., 0.], [ 1., 0.], [ 1., 1.], [ 0., 1.], [-0., 0.], [-0., 1.], [-1., 1.], [-1., 0.]], dtype=float32)