# Examples from pyvista.ImageData.n_points
# ========================================

# Create a mesh and return the number of points in the
# mesh.
import pyvista as pv
cube = pv.Cube()
cube.n_points

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

