TOctree2::FindNodesWithPredicate

This function will traverse the Octree starting from the root in depth first order and the predicate can be used to implement custom culling for each node.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Math/GenericOctree.h

Include

#include "Math/GenericOctree.h"

Syntax

template<typename PredicateFunc, typename IterateFunc>
void FindNodesWithPredicate
(
    const PredicateFunc & Predicate,
    const IterateFunc & Func
) const

Remarks

This function will traverse the Octree starting from the root in depth first order and the predicate can be used to implement custom culling for each node.

Parameters

Parameter

Description

Predicate

a Function when given the bounds of the currently traversed node that returns true if traversal should continue or false to skip that branch.

Func

Function that will receive the node ID which can be stored and later used to get the elements using GetElementsForNode for all nodes that passed the predicate.

Select Skin
Light
Dark

Welcome to the new Unreal Engine 4 Documentation site!

We're working on lots of new features including a feedback system so you can tell us how we are doing. It's not quite ready for use in the wild yet, so head over to the Documentation Feedback forum to tell us about this page or call out any issues you are encountering in the meantime.

We'll be sure to let you know when the new system is up and running.

Post Feedback