# Examples from pyvista.DataSetMapper.bounds_size
# ===============================================

# Get the size of a cube. The cube has edge lengths of `(1.0, 1.0, 1.0)`
# by default.
import pyvista as pv
mesh = pv.Cube()
mesh.bounds_size

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

