# Examples from pyvista.Transform.flip_x
# ======================================

# Compose a reflection about the x-axis.
import pyvista as pv
transform = pv.Transform()
_ = transform.flip_x()
transform.matrix

# Compose a second reflection, but this time about a point.
_ = transform.flip_x(point=(4, 5, 6))
transform.matrix

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

