multiplyTransformTransform Method
Multiply this Transform times other Transform.
- Note: If this = [A a]andother = [B b]thenthis * otheris defined as[A*B Ab+a]because:
equation
\begin{matrix}
   \text{this Transform with matrix part }\bold{A}\text{ and origin part }\bold{a} & \blockTransform{A}{a}\\
   \text{other Transform with matrix part }\bold{B}\text{ and origin part }\bold{b} & \blockTransform{B}{b} \\
\text{product}& \blockTransform{A}{a}\blockTransform{B}{b}=\blockTransform{AB}{Ab + a}
\end{matrix}
multiplyTransformTransform(other: Transform, result?: Transform): Transform
| Parameter | Type | Description | 
|---|---|---|
| other | Transform | the otherTransform to be multiplied tothisTransform. | 
| result | Transform | optional preallocated resultto reuse. | 
Returns - Transform
Defined in
- geometry3d/Transform.ts Line 705
Last Updated: 24 June, 2025
Found something wrong, missing, or unclear on this page? Raise an issue in our repo.