Skip to content

Commit

Permalink
fix(behavior_path_planner): fix overlapping function usage in parking (
Browse files Browse the repository at this point in the history
…autowarefoundation#3260)

feat(behavior_path_planner): fix overlapping function usage in parking

Signed-off-by: yutaka <purewater0901@gmail.com>
  • Loading branch information
purewater0901 authored and ktro2828 committed Apr 7, 2023
1 parent f66965b commit 96a2615
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ bool GeometricParallelParking::planPullOut(
paths.back().points.end(),
road_center_line_path.points.begin() + 1, // to avoid overlapped point
road_center_line_path.points.end());
removeOverlappingPoints(paths.back());
paths.back() = removeOverlappingPoints(paths.back());

// if the end point is the goal, set the velocity to 0
if (!goal_is_behind) {
Expand Down

0 comments on commit 96a2615

Please sign in to comment.