Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntPoint
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TIntPoint & operator/=
(
IntType Divisor |
Divide this point by a scalar. | Math/IntPoint.h | |
TIntPoint & operator/=
(
const TIntPoint& Other |
Divide this point component-wise by another point. | Math/IntPoint.h |
operator/=(IntType)
Description
Divide this point by a scalar.
| Name | operator/= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint & operator/=
(
IntType Divisor
)
Reference to this point after division.
Parameters
| Name | Remarks |
|---|---|
| Divisor | What to divide the point by. |
operator/=(const TIntPoint &)
Description
Divide this point component-wise by another 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 division.
Parameters
| Name | Remarks |
|---|---|
| Other | The point to divide with. |