Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntRect
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Gets the result of subtracting a point from this rectangle. | Math/IntRect.h | ||
| Gets the result of subtracting a rectangle from this one. | Math/IntRect.h |
operator-(const IntPointType &)
Description
Gets the result of subtracting a point from 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 subtracted from it.
Parameters
| Name | Remarks |
|---|---|
| Point | The point to subtract from both points in the rectangle. |
operator-(const TIntRect &)
Description
Gets the result of subtracting a rectangle from this one.
| Name | operator- |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntRect.h |
| Include Path | #include "Math/IntRect.h" |
TIntRect operator-
(
const TIntRect & Other
) const
New rectangle after one is subtracted from this.
Parameters
| Name | Remarks |
|---|---|
| Other | The other rectangle to subtract from this. |