| 220 | } |
| 221 | |
| 222 | BoostPolygon removeSpikes(const BoostPolygon& polygon) { |
| 223 | BoostPolygon temp(polygon); |
| 224 | boost::geometry::remove_spikes(temp); |
| 225 | return temp; |
| 226 | } |
| 227 | |
| 228 | std::vector<BoostPolygon> removeSpikes(const std::vector<BoostPolygon>& polygons) { |
| 229 | std::vector<BoostPolygon> result; |