BVHNode类中的getDepth方法用于获取当前节点在BVH树中的深度。
BVHNode.getDepth()
无参数。
返回当前节点在BVH树中的深度,类型为数字。
const rootNode = new BVHNode();
const leftNode = new BVHNode();
const rightNode = new BVHNode();
rootNode.left = leftNode;
rootNode.right = rightNode;
console.log(rootNode.getDepth()); // 结果为1
console.log(leftNode.getDepth()); // 结果为2
console.log(rightNode.getDepth());// 结果为2