Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntPoint
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Get the result of division on this point. | Math/IntPoint.h | ||
| Get the result of division on this point. | Math/IntPoint.h |
operator/(IntType)
Description
Get the result of division on 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 Divisor
) const
A new divided int point.
Parameters
| Name | Remarks |
|---|---|
| Divisor | What to divide the point by. |
operator/(const TIntPoint &)
Description
Get the result of division on 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
) const
A new subtracted int point.
Parameters
| Name | Remarks |
|---|---|
| Other | The other point to subtract from this. |