# Examples from pyvista.Transform.identity
# ========================================

# Compose an arbitrary transformation.
import pyvista as pv
transform = pv.Transform().scale(2.0)
transform.matrix

# Reset the transformation to the identity matrix.
_ = transform.identity()
transform.matrix

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

