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 (for example, using
translate(),compose(), 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.
Used In#
Docstring Examples
Transform(1 use)Transform.post_multiply(1 use)Transform.pre_multiply(1 use)