delaunator-cpp
delaunator-cpp copied to clipboard
A really fast C++ library for Delaunay triangulation of 2D points
Hello, If I have a large number of triangles and want to find which triangle encapsulates a certain point. What is the best method to do that ? eg. I...
I've added inline to all the methods of the Delaunator class to avoid link time errors.
The two functions: `get_hull_area` and `sum` seem to be unused.
The tuple header has to be included for std::tie in Line 304.
std::numeric_limits::min() is used to initialize maximum value variables that should grow to the highest encountered value. It represents the smallest positive normal double, so this value can never grow negative...
Including install target for easier inclusion into other projects. Also making the mason stuff optional as source data is either unavailable or requires proper credentials.
https://github.com/mapbox/delaunator/issues/44 https://github.com/mapbox/delaunator/pull/33 solves https://github.com/delfrrr/delaunator-cpp/issues/11 https://github.com/delfrrr/delaunator-cpp/issues/16
Hi, Is there some reason why the non-inline functions in delaunator.hpp aren't in a source (.cpp) file? The functions aren't inlined, which makes including the header file in more than...