Class PointAABBTree3.TreeTraversal
Instances of this class can be passed in to the DoTraversal() function to implement your
own tree-traversal queries.
NextBoxF() is called for each box node. Return false from this function to halt terminate
that branch of the traversal, or true to descend into that box's children (boxes or points).
NextPointF() is called for each point.
Inheritance
PointAABBTree3.TreeTraversal
Namespace: g3
Assembly: cs.temp.dll.dll
Syntax
public class TreeTraversal
Fields
NextBoxF
Declaration
public Func<AxisAlignedBox3d, int, bool> NextBoxF
Field Value
NextPointF
Declaration
public Action<int> NextPointF
Field Value