# Examples from pyvista.DataObject.field_data
# ===========================================

# Add field data to a PolyData dataset and then return it.
import pyvista as pv
import numpy as np
mesh = pv.Sphere()
mesh.field_data['my-field-data'] = np.arange(10)
mesh.field_data['my-field-data']

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

