Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TQuat
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TQuat< T > operator*=
(
const TQuat< T >& Q |
Multiply this by a quaternion (this = this * Q). | Math/Quat.h | |
TQuat< T > operator*=
(
const FArg Scale |
Multiply this quaternion by a scaling factor. | Math/Quat.h |
operator*=(const TQuat< T > &)
Description
Multiply this by a quaternion (this = this * Q).
Order matters when composing quaternions: C = A * B will yield a quaternion C that logically first applies B then A to any subsequent transformation (right first, then left).
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Quat.h |
| Include Path | #include "Math/Quat.h" |
TQuat < T > operator*=
(
const TQuat < T > & Q
)
The result of multiplication (this * Q).
Parameters
| Name | Remarks |
|---|---|
| Q | the quaternion to multiply this by. |
operator*=(const FArg)
Description
Multiply this quaternion by a scaling factor.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Quat.h |
| Include Path | #include "Math/Quat.h" |
template<typename FArg, std::enable_if_t<(std::is_arithmetic_v< FArg >), int >>
TQuat < T > operator*=
(
const FArg Scale
)
a reference to this after scaling.
Parameters
| Name | Remarks |
|---|---|
| Scale | The scaling factor. |