(int maxChildren, int n)
| 472 | } |
| 473 | |
| 474 | private static RTree<Object, Rectangle> create(int maxChildren, int n) { |
| 475 | RTree<Object, Rectangle> tree = RTree.maxChildren(maxChildren).create(); |
| 476 | for (int i = 1; i <= n; i++) |
| 477 | tree = tree.add(e(i)); |
| 478 | return tree; |
| 479 | } |
| 480 | |
| 481 | @Test |
| 482 | public void testNearestSameDirection() { |
no test coverage detected