@@ -253,11 +253,11 @@ void correct(alt::Polygon2d & poly)
253
253
}
254
254
}
255
255
256
- bool covered_by (const alt::Point2d & point, const alt::ConvexPolygon2d & poly)
256
+ bool covered_by (const alt::Point2d & point, const alt::Polygon2d & poly)
257
257
{
258
258
constexpr double epsilon = 1e-6 ;
259
259
260
- const auto & vertices = poly.vertices ();
260
+ const auto & vertices = poly.outer ();
261
261
std::size_t winding_number = 0 ;
262
262
263
263
const auto [y_min_vertex, y_max_vertex] = std::minmax_element (
@@ -296,22 +296,6 @@ bool covered_by(const alt::Point2d & point, const alt::ConvexPolygon2d & poly)
296
296
return winding_number != 0 ;
297
297
}
298
298
299
- bool covered_by (const alt::Point2d & point, const alt::Polygon2d & poly)
300
- {
301
- auto _poly = poly;
302
- if (!poly.inners ().empty ()) {
303
- _poly = alt::Polygon2d::create (poly.outer (), {}).value ();
304
- }
305
-
306
- for (const auto & triangle : triangulate (_poly)) {
307
- if (covered_by (point, triangle)) {
308
- return true ;
309
- }
310
- }
311
-
312
- return false ;
313
- }
314
-
315
299
bool disjoint (const alt::ConvexPolygon2d & poly1, const alt::ConvexPolygon2d & poly2)
316
300
{
317
301
if (equals (poly1, poly2)) {
@@ -351,8 +335,7 @@ double distance(
351
335
}
352
336
}
353
337
354
- template <typename PolyT>
355
- double distance (const alt::Point2d & point, const PolyT & poly)
338
+ double distance (const alt::Point2d & point, const alt::Polygon2d & poly)
356
339
{
357
340
if (covered_by (point, poly)) {
358
341
return 0.0 ;
@@ -620,11 +603,11 @@ bool touches(const alt::Point2d & point, const alt::Polygon2d & poly)
620
603
return false ;
621
604
}
622
605
623
- bool within (const alt::Point2d & point, const alt::ConvexPolygon2d & poly)
606
+ bool within (const alt::Point2d & point, const alt::Polygon2d & poly)
624
607
{
625
608
constexpr double epsilon = 1e-6 ;
626
609
627
- const auto & vertices = poly.vertices ();
610
+ const auto & vertices = poly.outer ();
628
611
int64_t winding_number = 0 ;
629
612
630
613
const auto [y_min_vertex, y_max_vertex] = std::minmax_element (
@@ -660,7 +643,17 @@ bool within(const alt::Point2d & point, const alt::ConvexPolygon2d & poly)
660
643
}
661
644
}
662
645
663
- return winding_number != 0 ;
646
+ if (winding_number == 0 ) {
647
+ return false ;
648
+ }
649
+
650
+ for (const auto & inner : poly.inners ()) {
651
+ if (touches (point, inner)) {
652
+ return false ;
653
+ }
654
+ }
655
+
656
+ return true ;
664
657
}
665
658
666
659
bool within (
@@ -679,7 +672,4 @@ bool within(
679
672
680
673
return true ;
681
674
}
682
-
683
- template double distance (const alt::Point2d &, const alt::ConvexPolygon2d &);
684
- template double distance (const alt::Point2d &, const alt::Polygon2d &);
685
675
} // namespace autoware::universe_utils
0 commit comments