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 TransformTypeA, typename TransformTypeB>
ConcatenateRules < TransformTypeA, TransformTypeB >::ResultType Concatenate
(
const TransformTypeA & LHS,
const TransformTypeB & RHS
)
Remarks
Concatenates two transforms. Uses TransformCast<> to convert them first. If more efficient means are available to concatenate two transforms, provide a non-template overload (or possibly a specialization). Concatenation is performed in left to right order, so the output space of LHS must match the input space of RHS. 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. |