Skip to content

Commit 492dba4

Browse files
committed
fix unused function in header
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
1 parent cfe9872 commit 492dba4

File tree

1 file changed

+0
-10
lines changed
  • common/autoware_universe_utils/include/autoware/universe_utils/geometry

1 file changed

+0
-10
lines changed

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

-10
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,6 @@
1919

2020
namespace autoware::universe_utils::gjk
2121
{
22-
23-
namespace
24-
{
25-
/// @brief get the polygon vertex that is the furthest away from a direction vector
26-
size_t furthest_vertex_idx(const Polygon2d & poly, const Point2d & direction);
27-
Point2d support_vertex(const Polygon2d & poly1, const Polygon2d & poly2, const Point2d & direction);
28-
bool same_direction(const Point2d & p1, const Point2d & p2);
29-
double dot_product(const Point2d & p1, const Point2d & p2);
30-
Point2d cross_product(const Point2d & p1, const Point2d & p2, const Point2d & p3);
31-
} // namespace
3222
/**
3323
* @brief Check if 2 convex polygons intersect using the GJK algorithm
3424
* @details much faster than boost::geometry::overlaps() but limited to convex polygons

0 commit comments

Comments
 (0)