コード例 #1
0
 // used by tests
 protected void forceTreeSplit(int depth) {
   if (depth <= treeRoot.maxNodeDepth && this.depth < depth) {
     split();
     for (AbstractQuadTreeNode<E> child : children) {
       child.forceTreeSplit(depth);
     }
   }
 }