CODTransform::operator*=

CODTransform& CODTransform::operator*=(const CODTransform& xform)

Multiplies another transformation matrix with this one.

Defined in: OdTransform.cpp

Return Value

A reference to this transform.

Parameters

xform

The transform to multiply with this one.

Comments

Remember that matrix multiplication is not a communtative operation. That is, M1 * M2 != M2 * M1. Be cautious about the order of the multiplication.