Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBox
Description
Checks whether the given location is inside or on this box in the XY plane.
This function assumes boxes have closed bounds, i.e. points lying on the border of the box are not inside. Use IsInsideXY to exclude borders from the test.
| Name | IsInsideOrOnXY |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Box.h |
| Include Path | #include "Math/Box.h" |
bool IsInsideOrOnXY
(
const TVector < T > & In
) const
true if location is inside or on this box in the XY plane.
Parameters
| Name | Remarks |
|---|---|
| In | The location to test for inside or on the bounding volume. |
See Also
- IsInsideOrOn