pyvista.Transform.post_multiply#
- Transform.post_multiply() Transform [source]#
Set the multiplication mode to post-multiply.
In post-multiply mode, any additional transformations (e.g. using
translate()
,:meth:concatenate, etc.) will occur after any transformations represented by the currentmatrix
.Examples
>>> import pyvista as pv >>> transform = pv.Transform().post_multiply() >>> transform.multiply_mode 'post'