Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntRect
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Gets the result of adding a point to this rectangle. | Math/IntRect.h | ||
| Gets the result of adding two rectangles together. | Math/IntRect.h |
operator+(const IntPointType &)
Description
Gets the result of adding a point to 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 added to it.
Parameters
| Name | Remarks |
|---|---|
| Point | The point to add to both points in the rectangle. |
operator+(const TIntRect &)
Description
Gets the result of adding two rectangles together.
| 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 both are added together.
Parameters
| Name | Remarks |
|---|---|
| Other | The other rectangle to add to this. |