Skip to content

Commit e62e758

Browse files
committed
shortest_distance_from_ego_footprint_to_objects_on_path
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent e204726 commit e62e758

File tree

2 files changed

+2
-2
lines changed
  • planning/behavior_path_planner/autoware_behavior_path_planner_common

2 files changed

+2
-2
lines changed

planning/behavior_path_planner/autoware_behavior_path_planner_common/include/autoware/behavior_path_planner_common/utils/path_safety_checker/safety_check.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ double calculateRoughDistanceToObjects(
293293
* interpolating the path points.
294294
* @return The distance between the ego vehicle and the closest object.
295295
*/
296-
double calculate_distance_to_objects_from_path(
296+
double shortest_distance_from_ego_footprint_to_objects_on_path(
297297
const PathWithLaneId & path, const PredictedObjects & objects,
298298
const BehaviorPathPlannerParameters & parameters, const bool use_offset_ego_pose);
299299

planning/behavior_path_planner/autoware_behavior_path_planner_common/src/utils/path_safety_checker/safety_check.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ double calculateRoughDistanceToObjects(
879879
return min_distance;
880880
}
881881

882-
double calculate_distance_to_objects_from_path(
882+
double shortest_distance_from_ego_footprint_to_objects_on_path(
883883
const PathWithLaneId & path, const PredictedObjects & objects,
884884
const BehaviorPathPlannerParameters & parameters, const bool use_offset_ego_pose)
885885

0 commit comments

Comments
 (0)