Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBox2
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBox2< T > & operator+=
(
const TVector2< T >& Other |
Adds to this bounding box to include a given point. | Math/Box2D.h | |
TBox2< T > & operator+=
(
const TBox2< T >& Other |
Adds to this bounding box to include a new bounding volume. | Math/Box2D.h |
operator+=(const TVector2< T > &)
Description
Adds to this bounding box to include a given point.
| Name | operator+= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Box2D.h |
| Include Path | #include "Math/Box2D.h" |
TBox2 < T > & operator+=
(
const TVector2 < T > & Other
)
Reference to this bounding box after resizing to include the other point.
Parameters
| Name | Remarks |
|---|---|
| Other | The point to increase the bounding volume to. |
operator+=(const TBox2< T > &)
Description
Adds to this bounding box to include a new bounding volume.
| Name | operator+= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Box2D.h |
| Include Path | #include "Math/Box2D.h" |
TBox2 < T > & operator+=
(
const TBox2 < T > & Other
)
Reference to this bounding volume after resizing to include the other bounding volume.
Parameters
| Name | Remarks |
|---|---|
| Other | The bounding volume to increase the bounding volume to. |