ImageData.active_texture_coordinates#
- property ImageData.active_texture_coordinates: pyvista_ndarray | None[source]#
Return the active texture coordinates on the points.
- Returns:
Optional[pyvista_ndarray]Active texture coordinates on the points.
Examples#
Download Python source code | Download Jupyter notebook
Return the active texture coordinates from the globe example.
>>> from pyvista import examples
>>> globe = examples.load_globe()
>>> globe.active_texture_coordinates
pyvista_ndarray([[0. , 0. ],
[0. , 0.07142857],
[0. , 0.14285714],
...,
[1. , 0.85714286],
[1. , 0.92857143],
[1. , 1. ]], shape=(540, 2))