Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/FSparseDynamicOctree3
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RangeQuery
(
const FAxisAlignedBox3d& Bounds, |
Process ObjectIDs from all the cells with bounding boxes that intersect Bounds | Spatial/SparseDynamicOctree3.h | |
void RangeQuery
(
const FAxisAlignedBox3d& Bounds, |
Collect ObjectIDs from all the cells with bounding boxes that intersect Bounds | Spatial/SparseDynamicOctree3.h |
RangeQuery(const FAxisAlignedBox3d &, TFunctionRef< void(int)>)
Description
Process ObjectIDs from all the cells with bounding boxes that intersect Bounds
| Name | RangeQuery |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Spatial/SparseDynamicOctree3.h |
| Include Path | #include "Spatial/SparseDynamicOctree3.h" |
| Source | /Engine/Source/Runtime/GeometryCore/Private/Spatial/SparseDynamicOctree3.cpp |
void RangeQuery
(
const FAxisAlignedBox3d & Bounds,
TFunctionRef < void> ObjectIDFunc
) const
Parameters
| Name | Remarks |
|---|---|
| Bounds | query box |
| ObjectIDFunc | this function is called for each ObjectID |
RangeQuery(const FAxisAlignedBox3d &, TArray< int > &)
Description
Collect ObjectIDs from all the cells with bounding boxes that intersect Bounds
| Name | RangeQuery |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Spatial/SparseDynamicOctree3.h |
| Include Path | #include "Spatial/SparseDynamicOctree3.h" |
| Source | /Engine/Source/Runtime/GeometryCore/Private/Spatial/SparseDynamicOctree3.cpp |
void RangeQuery
(
const FAxisAlignedBox3d & Bounds,
TArray < int > & ObjectIDsOut
) const
Parameters
| Name | Remarks |
|---|---|
| Bounds | query box |
| ObjectIDsOut | collected ObjectIDs are stored here |