Use this only to set an optimized quadtree after construction @param center_x @param center_y
(final int center_x, final int center_y)
| 124 | * @param center_y |
| 125 | */ |
| 126 | public void setQuadtree(final int center_x, final int center_y) { |
| 127 | elements = new Quadtree<>(center_x, center_y); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Gets the center x coordinate (estimation) |
no outgoing calls