id summary reporter owner description type status milestone component version severity resolution keywords cc 12145 boost::geometry::remove_spikes doesn't remove spike xiongzubiao@… Barend Gehrels "In the following example, the fourth point is actually a spike. ''remove_spikes'' does not remove it. {{{ #include #include #include namespace bg = boost::geometry; int main() { typedef bg::model::point point_t; typedef bg::model::polygon polygon_t; polygon_t poly{ { { 0.08039, 0.08076 },{ 0.836, 2.343 }, { 2.24, 1.874 },{ 1.452,-0.485 },{ 1.485, -0.3882 } } }; bg::correct(poly); bg::remove_spikes(poly); return 0 } }}}" Bugs new To Be Determined geometry Boost 1.60.0 Problem