Concatenate

Concatenates four 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, typename TransformType4>
auto Concatenate
(
    const TransformType1 & TransformAToB,
    const TransformType2 & TransformBToC,
    const TransformType3 & TransformCToD,
    const TransformType4 & TransformDToE
)

Remarks

Concatenates four 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 E.

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.

TransformDToE

Transformation that goes from space D to space E.

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