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