geometry
geometry copied to clipboard
Boost.Geometry - Generic Geometry Library | Requires C++14 since Boost 1.75
For 1.85.0 with MSVC2022 the result of boost::geometry::intersection for certain input is wrong. Coordinate type: double when some of the points of different input polygons are close to each other...
This message is to report a linux compile warning/error in boost-1.81.0/geometry/algorithms/detail/overlay/sort_by_side.hpp. gcc shows -Wuninitialized at line 299, and is converted to a hard compile-error with our local usage of -Werror=uninitialized....
This is a follow up ticket for https://github.com/boostorg/geometry/issues/1288. Adapting your test code from that ticket with a new data set, we get wrong results for double and long double precision:...
BOOST v1.84 / v1.85 Using the following code, lOuts is empty in the end: ```c++ boost::geometry::model::polygon lPolygon; lPolygon.outer().push_back({730.35, 750.00}); lPolygon.outer().push_back({730.35, 740.00}); lPolygon.outer().push_back({726.02, 740.00}); lPolygon.outer().push_back({726.02, 735.00}); lPolygon.outer().push_back({730.35, 735.00}); lPolygon.outer().push_back({730.35, 0.00}); lPolygon.outer().push_back({0.00,...
Hi, I obtained the difference between the two rings and found that the result intersects with the original ring, but it neither overlaps nor touches it. I think in the...
Hi, I have some scripts that build each boost library's documentation individually, to test they are working as expected. (Those scripts are in release-tools/build_docs). For all other boost libraries, this...
This issue might be a duplicate of [#1226](https://github.com/boostorg/geometry/issues/1226) or [#1179](https://github.com/boostorg/geometry/issues/1179), and if we can confirm this, happy for this ticket to be closed of course. But the additional example might...
Add distance strategies to documentation: * vincenty * andoyer * thomas It's not only distance, also azimuth, so it's kind of a new usage.