Constructor
| 36 | |
| 37 | // Constructor |
| 38 | DynamicAABBTree::DynamicAABBTree(MemoryAllocator& allocator, decimal fatAABBInflatePercentage) |
| 39 | : mAllocator(allocator), mFatAABBInflatePercentage(fatAABBInflatePercentage) { |
| 40 | |
| 41 | init(); |
| 42 | } |
| 43 | |
| 44 | // Destructor |
| 45 | DynamicAABBTree::~DynamicAABBTree() { |
nothing calls this directly
no outgoing calls
no test coverage detected