# Examples from pyvista.ImageData.active_vectors_info
# ===================================================

# Create a mesh, compute the normals inplace, set the active
# vectors to the normals, and show that the active vectors are
# the `'Normals'` array associated with points.
import pyvista as pv
mesh = pv.Sphere()
_ = mesh.compute_normals(inplace=True)
mesh.active_vectors_name = 'Normals'
mesh.active_vectors_info

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

