Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TTransform
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TTransform< T > operator*
(
T Mult |
Math/TransformNonVectorized.h | ||
TTransform< T > operator*
(
const TTransform< T >& Other |
Return a transform that is the result of this multiplied by another transform. | Math/TransformNonVectorized.h | |
TTransform< T > operator*
(
const TQuat< T >& Other |
Return a transform that is the result of this multiplied by another transform (made only from a rotation). | Math/TransformNonVectorized.h |
operator*(T)
| Name | operator* |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/TransformNonVectorized.h |
| Include Path | #include "Math/TransformNonVectorized.h" |
TTransform < T > operator*
(
T Mult
) const
operator*(const TTransform< T > &)
Description
Return a transform that is the result of this multiplied by another transform. Order matters when composing transforms : C = A * B will yield a transform C that logically first applies A then B to any subsequent transformation.
| Name | operator* |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/TransformNonVectorized.h |
| Include Path | #include "Math/TransformNonVectorized.h" |
TTransform < T > operator*
(
const TTransform < T > & Other
) const
new transform: this * Other
Parameters
| Name | Remarks |
|---|---|
| Other | other transform by which to multiply. |
operator*(const TQuat< T > &)
Description
Return a transform that is the result of this multiplied by another transform (made only from a rotation). Order matters when composing transforms : C = A * B will yield a transform C that logically first applies A then B to any subsequent transformation.
| Name | operator* |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/TransformNonVectorized.h |
| Include Path | #include "Math/TransformNonVectorized.h" |
TTransform < T > operator*
(
const TQuat < T > & Other
) const
new transform: this * TTransform(Other)
Parameters
| Name | Remarks |
|---|---|
| Other | other quaternion rotation by which to multiply. |