multiplyMatrixTransform Method
Multiply this
Matrix3d (considered to be a Transform with 0 origin
) times other
Transform.
- Note: If
this = [A 0]
andother = [B b]
, thenthis * other
is defined as [A*B Ab] because:
multiplyMatrixTransform(other: Transform, result?: Transform): Transform
Parameter | Type | Description |
---|---|---|
other | Transform | the other Transform to be multiplied to this matrix. |
result | Transform | optional preallocated result to reuse. |
Returns - Transform
Defined in
- geometry3d/Matrix3d.ts Line 2192
Last Updated: 28 October, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.