Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FConvexVolume
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool IntersectBox
(
const FVector& Origin, |
Intersection test with a translated axis-aligned box. | ConvexVolume.h | |
bool IntersectBox
(
const FVector& Origin, |
Intersection test with a translated axis-aligned box. | ConvexVolume.h | |
bool IntersectBox
(
const FVector& Origin, |
Intersection test with a translated axis-aligned box. | ConvexVolume.h |
IntersectBox(const FVector &, const FVector &)
Description
Intersection test with a translated axis-aligned box.
| Name | IntersectBox |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/ConvexVolume.h |
| Include Path | #include "ConvexVolume.h" |
| Source | /Engine/Source/Runtime/Engine/Private/ConvexVolume.cpp |
bool IntersectBox
(
const FVector & Origin,
const FVector & Extent
) const
true if this convex volume intersects the given translated box.
Parameters
| Name | Remarks |
|---|---|
| Origin | of the box. |
| Translation | to apply to the box. |
| Extent | of the box along each axis. |
IntersectBox(const FVector &, const FVector &, bool &)
Description
Intersection test with a translated axis-aligned box.
| Name | IntersectBox |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/ConvexVolume.h |
| Include Path | #include "ConvexVolume.h" |
| Source | /Engine/Source/Runtime/Engine/Private/ConvexVolume.cpp |
bool IntersectBox
(
const FVector & Origin,
const FVector & Extent,
bool & bOutFullyContained
) const
true if this convex volume intersects the given translated box.
Parameters
| Name | Remarks |
|---|---|
| Origin | of the box. |
| Translation | to apply to the box. |
| Extent | of the box along each axis. param bOutFullyContained to know if the box was fully contained |
IntersectBox(const FVector &, const FVector &, const FVector &)
Description
Intersection test with a translated axis-aligned box.
| Name | IntersectBox |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/ConvexVolume.h |
| Include Path | #include "ConvexVolume.h" |
| Source | /Engine/Source/Runtime/Engine/Private/ConvexVolume.cpp |
bool IntersectBox
(
const FVector & Origin,
const FVector & Translation,
const FVector & Extent
) const
true if this convex volume intersects the given translated box.
Parameters
| Name | Remarks |
|---|---|
| Origin | Origin of the box. |
| Translation | Translation to apply to the box. |
| Extent | Extent of the box along each axis. |