-
public class PointQuadTree<T extends PointQuadTree.Item>A quad tree which tracks items with a Point geometry. See http://en.wikipedia.org/wiki/Quadtree for details on the data structure. This class is not thread safe.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfacePointQuadTree.Item
-
Constructor Summary
Constructors Constructor Description PointQuadTree(double minX, double maxX, double minY, double maxY)Creates a new quad tree with specified bounds. PointQuadTree(Bounds bounds)
-
Method Summary
-
-
Constructor Detail
-
PointQuadTree
PointQuadTree(double minX, double maxX, double minY, double maxY)
Creates a new quad tree with specified bounds.
-
PointQuadTree
PointQuadTree(Bounds bounds)
-
-
-
-