# Examples from pyvista.Transform.translation
# ===========================================

# Compose a translation and get the translation component.
import pyvista as pv
trans = pv.Transform() + (1, 2, 3)
trans.translation

# Compose a second translation and get the component again.
trans += (4, 5, 6)
trans.translation

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

