pyvista.Transform.multiply_mode

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 to pre_multiply(). Set this to 'post' to set it to post_multiply().

In pre-multiply mode, any additional transformations (e.g. using translate(),:meth:concatenate, etc.) will occur before any transformations represented by the current matrix. In post-multiply mode, the additional transformation will occur after any transformations represented by the current matrix.