# Examples from pyvista.ImageData.center
# ======================================

# Get the center of a mesh.
import pyvista as pv
mesh = pv.Sphere(center=(1, 2, 0))
mesh.center

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

