# Examples from pyvista.Transform.scale_factors
# =============================================

# Compose a scale matrix and get the scale factors.
import pyvista as pv
trans = pv.Transform() * (1, 2, 3)
trans.scale_factors

# Compose a second scale matrix and get the factors again.
trans *= (4, 5, 6)
trans.scale_factors

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

