# Examples from pyvista.DataSet.length
# ====================================

# Get the length of the bounding box of a cube.  This should
# match `3**(1/2)` since it is the diagonal of a cube that is
# `1 x 1 x 1`.
import pyvista as pv
mesh = pv.Cube()
mesh.length

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

