Class DMeshAABBTree3.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 triangles).
NextTriangleF() is called for each triangle.
Inheritance
DMeshAABBTree3.TreeTraversal
Namespace: g3
Assembly: cs.temp.dll.dll
Syntax
public class TreeTraversal
Fields
NextBoxF
Declaration
public Func<AxisAlignedBox3f, int, bool> NextBoxF
Field Value
NextTriangleF
Declaration
public Action<int> NextTriangleF
Field Value