Concatenate

Concatenates three transforms.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Math/TransformCalculus.h"

Syntax

template<typename TransformType1, typename TransformType2, typename TransformType3>
auto Concatenate
(
    const TransformType1 & TransformAToB,
    const TransformType2 & TransformBToC,
    const TransformType3 & TransformCToD
)

Remarks

Concatenates three transforms. Uses two-argument Concatenate to do its work, and infers the return type using decltype.

Returns

a new Transform representing the transformation from space A to space D.

Parameters

Parameter

Description

TransformAToB

Transformation that goes from space A to space B

TransformBToC

Transformation that goes from space B to space C.

TransformCToD

Transformation that goes from space C to space D.

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