Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntPoint
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TIntPoint & operator*=
(
IntType Scale |
Scale this point. | Math/IntPoint.h | |
TIntPoint & operator*=
(
const TIntPoint& Other |
Multiply another point component-wise from this point. | Math/IntPoint.h |
operator*=(IntType)
Description
Scale this point.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint & operator*=
(
IntType Scale
)
Reference to this point after multiplication.
Parameters
| Name | Remarks |
|---|---|
| Scale | What to multiply the point by. |
operator*=(const TIntPoint &)
Description
Multiply another point component-wise from this point.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint & operator*=
(
const TIntPoint & Other
)
Reference to this point after multiplication.
Parameters
| Name | Remarks |
|---|---|
| Other | The point to multiply with this point. |