Skip to content

Commit 8f7811e

Browse files
committed
winding number algorithm is applicable to concave polygon
Signed-off-by: mitukou1109 <mitukou1109@gmail.com>
1 parent 33e90ae commit 8f7811e

File tree

2 files changed

+18
-31
lines changed

2 files changed

+18
-31
lines changed

common/autoware_universe_utils/include/autoware/universe_utils/geometry/alt_geometry.hpp

+2-5
Original file line numberDiff line numberDiff line change
@@ -159,17 +159,14 @@ std::optional<alt::ConvexPolygon2d> convex_hull(const alt::Points2d & points);
159159

160160
void correct(alt::Polygon2d & poly);
161161

162-
bool covered_by(const alt::Point2d & point, const alt::ConvexPolygon2d & poly);
163-
164162
bool covered_by(const alt::Point2d & point, const alt::Polygon2d & poly);
165163

166164
bool disjoint(const alt::ConvexPolygon2d & poly1, const alt::ConvexPolygon2d & poly2);
167165

168166
double distance(
169167
const alt::Point2d & point, const alt::Point2d & seg_start, const alt::Point2d & seg_end);
170168

171-
template <typename PolyT>
172-
double distance(const alt::Point2d & point, const PolyT & poly);
169+
double distance(const alt::Point2d & point, const alt::Polygon2d & poly);
173170

174171
std::optional<alt::ConvexPolygon2d> envelope(const alt::Polygon2d & poly);
175172

@@ -202,7 +199,7 @@ bool touches(const alt::Point2d & point, const alt::PointList2d & vertices);
202199

203200
bool touches(const alt::Point2d & point, const alt::Polygon2d & poly);
204201

205-
bool within(const alt::Point2d & point, const alt::ConvexPolygon2d & poly);
202+
bool within(const alt::Point2d & point, const alt::Polygon2d & poly);
206203

207204
bool within(
208205
const alt::ConvexPolygon2d & poly_contained, const alt::ConvexPolygon2d & poly_containing);

common/autoware_universe_utils/src/geometry/alt_geometry.cpp

+16-26
Original file line numberDiff line numberDiff line change
@@ -253,11 +253,11 @@ void correct(alt::Polygon2d & poly)
253253
}
254254
}
255255

256-
bool covered_by(const alt::Point2d & point, const alt::ConvexPolygon2d & poly)
256+
bool covered_by(const alt::Point2d & point, const alt::Polygon2d & poly)
257257
{
258258
constexpr double epsilon = 1e-6;
259259

260-
const auto & vertices = poly.vertices();
260+
const auto & vertices = poly.outer();
261261
std::size_t winding_number = 0;
262262

263263
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)
296296
return winding_number != 0;
297297
}
298298

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-
315299
bool disjoint(const alt::ConvexPolygon2d & poly1, const alt::ConvexPolygon2d & poly2)
316300
{
317301
if (equals(poly1, poly2)) {
@@ -351,8 +335,7 @@ double distance(
351335
}
352336
}
353337

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)
356339
{
357340
if (covered_by(point, poly)) {
358341
return 0.0;
@@ -620,11 +603,11 @@ bool touches(const alt::Point2d & point, const alt::Polygon2d & poly)
620603
return false;
621604
}
622605

623-
bool within(const alt::Point2d & point, const alt::ConvexPolygon2d & poly)
606+
bool within(const alt::Point2d & point, const alt::Polygon2d & poly)
624607
{
625608
constexpr double epsilon = 1e-6;
626609

627-
const auto & vertices = poly.vertices();
610+
const auto & vertices = poly.outer();
628611
int64_t winding_number = 0;
629612

630613
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)
660643
}
661644
}
662645

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;
664657
}
665658

666659
bool within(
@@ -679,7 +672,4 @@ bool within(
679672

680673
return true;
681674
}
682-
683-
template double distance(const alt::Point2d &, const alt::ConvexPolygon2d &);
684-
template double distance(const alt::Point2d &, const alt::Polygon2d &);
685675
} // namespace autoware::universe_utils

0 commit comments

Comments
 (0)