Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Math > API/Runtime/Core/Math/Concatenate
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Math/TransformCalculus.h |
| Include | #include "Math/TransformCalculus.h" |
template<typename TransformType>
decltype(LHS.Concatenate(RHS)) Concatenate
(
const TransformType & LHS,
const TransformType & RHS
)
Remarks
Specialization for concatenating two transforms of the same type. By default we try to use a member function on the type. a new transform representing the transformation from the input space of LHS to the output space of RHS.
Parameters
| Name | Description |
|---|---|
| LHS | Transformation that goes from space A to space B |
| RHS | Transformation that goes from space B to space C. |