()
| 31 | } |
| 32 | |
| 33 | func (node B2TreeNode) IsLeaf() bool { |
| 34 | return node.Child1 == B2_nullNode |
| 35 | } |
| 36 | |
| 37 | /// A dynamic AABB tree broad-phase, inspired by Nathanael Presson's btDbvt. |
| 38 | /// A dynamic tree arranges data in a binary tree to accelerate |
no outgoing calls
no test coverage detected