Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TTransform
Description
Create a new transform: OutTransform = A * B.
Order matters when composing transforms : A * B will yield a transform that logically first applies A then B to any subsequent transformation.
Returns Multiplied Transform of 2 TTransform
| Name | Multiply |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/TransformNonVectorized.h |
| Include Path | #include "Math/TransformNonVectorized.h" |
static void Multiply
(
TTransform < T > * OutTransform,
const TTransform < T > * A,
const TTransform < T > * B
)
Parameters
| Name | Remarks |
|---|---|
| OutTransform | pointer to transform that will store the result of A * B. |
| A | Transform A. |
| B | Transform B. |