Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntRect
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Gets the result of division on this rectangle. | Math/IntRect.h | ||
| Gets the result of dividing a point with this rectangle. | Math/IntRect.h |
operator/(IntType)
Description
Gets the result of division on this rectangle.
| Name | operator/ |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntRect.h |
| Include Path | #include "Math/IntRect.h" |
TIntRect operator/
(
IntType Div
) const
New divided rectangle.
Parameters
| Name | Remarks |
|---|---|
| Div | What to divide this rectangle by. |
operator/(const IntPointType &)
Description
Gets the result of dividing a point with this rectangle.
| Name | operator/ |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntRect.h |
| Include Path | #include "Math/IntRect.h" |
TIntRect operator/
(
const IntPointType & Point
) const
New rectangle with point divided.
Parameters
| Name | Remarks |
|---|---|
| Point | The point to divide with. |