pyvista.Transform.multiply_mode#
- property Transform.multiply_mode: Literal['pre', 'post'][source]#
Set or get the multiplication mode.
Set this to
'pre'
to set the multiplication mode topre_multiply()
. Set this to'post'
to set it topost_multiply()
.In pre-multiply mode, any additional transformations (e.g. using
translate()
,:meth:concatenate, etc.) will occur before any transformations represented by the currentmatrix
. In post-multiply mode, the additional transformation will occur after any transformations represented by the current matrix.