| 8 | namespace TEN::Structures |
| 9 | { |
| 10 | bool BoundingVolumeHierarchy::Node::IsLeaf() const |
| 11 | { |
| 12 | return (LeftChildId == NO_VALUE && RightChildId == NO_VALUE); |
| 13 | } |
| 14 | |
| 15 | BoundingVolumeHierarchy::BoundingVolumeHierarchy(const std::vector<int>& objectIds, const std::vector<BoundingBox>& aabbs, BvhBuildStrategy strategy) |
| 16 | { |
no outgoing calls
no test coverage detected