Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FTwoVectors
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FTwoVectors operator*=
(
float Scale |
Scale the pair. | Math/TwoVectors.h | |
FTwoVectors operator*=
(
const FTwoVectors& V |
Multiply the pair by another. | Math/TwoVectors.h |
operator*=(float)
Description
Scale the pair.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/TwoVectors.h |
| Include Path | #include "Math/TwoVectors.h" |
FTwoVectors operator*=
(
float Scale
)
Copy of the pair after scaling.
Parameters
| Name | Remarks |
|---|---|
| Scale | What to scale by. |
operator*=(const FTwoVectors &)
Description
Multiply the pair by another.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/TwoVectors.h |
| Include Path | #include "Math/TwoVectors.h" |
FTwoVectors operator*=
(
const FTwoVectors & V
)
Copy of the pair after multiplication.
Parameters
| Name | Remarks |
|---|---|
| The | other pair. |