quadtree
quadtree copied to clipboard
Go QuadTree Library
Results
2
quadtree issues
Sort by
recently updated
recently updated
newest added
Hi, thanks for the quadtree codes and it’s very fast for many points query. However I wrote a simple program, and found the `qtree.KNearest` didn’t return in dist order: ```go...
I noticed that QuadTree.depth is never updated. So MaxDepth never comes in to play. QuadTree.divide() simply sets the new depths to the same as the parent: `qt.nodes[0] = New(bb, qt.depth,...