Point Quad Tree
class PointQuadTree<T : PointQuadTree.Item> @JvmOverloads constructor(mBounds: Bounds, mDepth: Int = 0)
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.