Quadtree
Quadtree copied to clipboard
A simple and modern C++ quadtree implementation
Allow users to specify an allocator for the vector object used by the library. Also allow a functor to replace usage of std::make_unique with a custom version. Works with both...
Make code compatible with C++14. Only very few changes are needed to achieve this.
Changed Norst -> North
I have a collection (10,000s) of 2d quadrilateral shapes/polygon I have a collection (millions) of 2d points I would like to know if this library is suitable for me quickly...