# Examples from pyvista.DataSet.active_vectors
# ============================================

# Create a mesh, compute the normals inplace, and return the
# normals vector array.
import pyvista as pv
mesh = pv.Sphere()
_ = mesh.compute_normals(inplace=True)
mesh.active_vectors

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

