return true

```
  bool OK = triangulate_polygons(points, triangles, np);

  if (!OK) return true;
```
This commit is contained in:
Laurent Rineau 2025-05-13 17:23:06 +02:00
parent bcfd317c17
commit 41c6f59e8b
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ bool does_polygon_soup_self_intersect(const PointRange& points,
boost::make_transform_iterator(cend(polygons), to_std_vector));
bool OK = triangulate_polygons(points, triangles, np);
if (!OK) return false;
if (!OK) return true;
return does_triangle_soup_self_intersect<ConcurrencyTag>(unique_points, triangles, np);
}