91 float CalculateSAHCostInternal(
float inCostTraversalDivSurfaceArea,
float inCostLeafDivSurfaceArea)
const;
94 void GetTriangleCountPerNodeInternal(
float &outAverage,
uint &outAverageDivisor,
uint &outMin,
uint &outMax)
const;
107 const uint mMaxTrianglesPerLeaf;
unsigned int uint
Definition Core.h:309
#define JPH_NAMESPACE_END
Definition Core.h:240
#define JPH_NAMESPACE_BEGIN
Definition Core.h:234
Array< IndexedTriangle > IndexedTriangleList
Definition IndexedTriangle.h:105
#define JPH_OVERRIDE_NEW_DELETE
Macro to override the new and delete functions.
Definition Memory.h:29
std::vector< T, STLAllocator< T > > Array
Definition STLAllocator.h:81
A node in the tree, contains the AABox for the tree and any child nodes or triangles.
Definition AABBTreeBuilder.h:40
void GetTriangleCountPerNode(float &outAverage, uint &outMin, uint &outMax) const
Calculate min and max triangles per node.
Definition AABBTreeBuilder.cpp:71
uint GetMinDepth() const
Min depth of tree.
Definition AABBTreeBuilder.cpp:23
uint GetLeafNodeCount() const
Number of leaf nodes in tree.
Definition AABBTreeBuilder.cpp:55
AABox mBounds
Bounding box.
Definition AABBTreeBuilder.h:79
IndexedTriangleList mTriangles
Triangles (if no child nodes)
Definition AABBTreeBuilder.h:82
void GetNChildren(uint inN, Array< const Node * > &outChildren) const
Recursively get children (breadth first) to get in total inN children (or less if there are no more)
Definition AABBTreeBuilder.cpp:88
JPH_OVERRIDE_NEW_DELETE Node()
Constructor.
Definition AABBTreeBuilder.cpp:11
uint GetTriangleCount() const
Get number of triangles in this node.
Definition AABBTreeBuilder.h:49
~Node()
Definition AABBTreeBuilder.cpp:17
uint GetTriangleCountInTree() const
Get triangle count in tree.
Definition AABBTreeBuilder.cpp:63
Node * mChild[2]
Child nodes (if no triangles)
Definition AABBTreeBuilder.h:85
bool HasChildren() const
Check if this node has any children.
Definition AABBTreeBuilder.h:52
uint GetNodeCount() const
Number of nodes in tree.
Definition AABBTreeBuilder.cpp:47
uint GetMaxDepth() const
Max depth of tree.
Definition AABBTreeBuilder.cpp:35
float CalculateSAHCost(float inCostTraversal, float inCostLeaf) const
Calculate the total cost of the tree using the surface area heuristic.
Definition AABBTreeBuilder.cpp:82
Helper class to build an AABB tree.
Definition AABBTreeBuilder.h:36
AABBTreeBuilder(TriangleSplitter &inSplitter, uint inMaxTrianglesPerLeaf=16)
Constructor.
Definition AABBTreeBuilder.cpp:156
Node * Build(AABBTreeBuilderStats &outStats)
Recursively build tree, returns the root node of the tree.
Definition AABBTreeBuilder.cpp:162
Axis aligned box.
Definition AABox.h:16
Class that makes another class non-copyable. Usage: Inherit from NonCopyable.
Definition NonCopyable.h:11
A class that splits a triangle list into two parts for building a tree.
Definition TriangleSplitter.h:13
Definition AABBTreeBuilder.h:14
int mTreeMinTrianglesPerLeaf
Minimal amount of triangles in a leaf.
Definition AABBTreeBuilder.h:29
float mSAHCost
Surface Area Heuristic cost of this tree.
Definition AABBTreeBuilder.h:19
int mMaxTrianglesPerLeaf
Configured max triangles per leaf.
Definition AABBTreeBuilder.h:26
int mMaxDepth
Maximum depth of tree (number of nodes)
Definition AABBTreeBuilder.h:21
int mLeafNodeCount
Number of leaf nodes (that contain triangles)
Definition AABBTreeBuilder.h:23
float mTreeAvgTrianglesPerLeaf
Average amount of triangles in leaf nodes.
Definition AABBTreeBuilder.h:31
int mMinDepth
Minimal depth of tree (number of nodes)
Definition AABBTreeBuilder.h:20
TriangleSplitter::Stats mSplitterStats
Stats returned by the triangle splitter algorithm.
Definition AABBTreeBuilder.h:16
int mNodeCount
Number of nodes in the tree.
Definition AABBTreeBuilder.h:22
int mTreeMaxTrianglesPerLeaf
Maximal amount of triangles in a leaf.
Definition AABBTreeBuilder.h:30
Helper struct to indicate triangle range before and after the split.
Definition TriangleSplitter.h:32
Definition TriangleSplitter.h:22