FTransform::Multiply

Create a new transform: OutTransform = A * B.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Math/TransformNonVectorized.h

Include

#include "Math/TransformNonVectorized.h"

Syntax

static void Multiply
(
    FTransform * OutTransform,
    const FTransform * A,
    const FTransform * B
)

Remarks

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 FTransforms

Parameters

Parameter

Description

OutTransform

pointer to transform that will store the result of A * B.

A

Transform A.

B

Transform B.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss