delaunator-cpp icon indicating copy to clipboard operation
delaunator-cpp copied to clipboard

A really fast C++ library for Delaunay triangulation of 2D points

Results 32 delaunator-cpp issues
Sort by recently updated
recently updated
newest added

The following fix is needed to compile under a recent Linux (Fedora 36): ```diff modified test/main.test.cpp @@ -1,2 +1,3 @@ #define CATCH_CONFIG_MAIN +#define CATCH_CONFIG_NO_POSIX_SIGNALS #include ```

when finding the third point which forms the smallest circumcircle with the first two, I noticed if 3 points happen to be vertically or horizontally collinear, d will get checked...