Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBox
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBox< T > & operator+=
(
const TVector< T >& Other |
Adds to this bounding box to include a given point.TBox |
Math/Box.h | |
TBox< T > & operator+=
(
const TBox< T >& Other |
Adds to this bounding box to include a new bounding volume. | Math/Box.h |
operator+=(const TVector< T > &)
Description
Adds to this bounding box to include a given point.
TBox
| Name | operator+= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Box.h |
| Include Path | #include "Math/Box.h" |
TBox < T > & operator+=
(
const TVector < 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 TBox< 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/Box.h |
| Include Path | #include "Math/Box.h" |
TBox < T > & operator+=
(
const TBox < 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. |