# Examples from pyvista.ImageData.active_vectors_name
# ===================================================

# Create a mesh, compute the normals, set them as active, and
# return the name of the active vectors.
import pyvista as pv
mesh = pv.Sphere()
mesh_w_normals = mesh.compute_normals()
mesh_w_normals.active_vectors_name = 'Normals'
mesh_w_normals.active_vectors_name

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

