# Examples from pyvista.Transform.reflection
# ==========================================

# Create a transform and get its reflection.
import pyvista as pv
trans = pv.Transform()
trans.reflection

# Compose a reflection about the x-axis and get the reflection again.
_ = trans.flip_x()
trans.reflection

# Compose a second reflection and get the reflection again.
_ = trans.flip_y()
trans.reflection

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

