Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMatrix
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void operator*=
(
const TMatrix< T >& Other |
Multiply this by a matrix. | Math/Matrix.h | |
void operator*=
(
T Other |
Multiply this matrix by a weighting factor. | Math/Matrix.h |
operator*=(const TMatrix< T > &)
Description
Multiply this by a matrix.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Matrix.h |
| Include Path | #include "Math/Matrix.h" |
| Source | /Engine/Source/Runtime/Core/Public/Math/Matrix.inl |
void operator*=
(
const TMatrix < T > & Other
)
reference to this after multiply.
Parameters
| Name | Remarks |
|---|---|
| Other | the matrix to multiply by this. |
operator*=(T)
Description
Multiply this matrix by a weighting factor.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Matrix.h |
| Include Path | #include "Math/Matrix.h" |
| Source | /Engine/Source/Runtime/Core/Public/Math/Matrix.inl |
void operator*=
(
T Other
)
a reference to this after weighting.
Parameters
| Name | Remarks |
|---|---|
| other | The weight. |