Skip to content

Commit

Permalink
Chore: Change variable names
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
  • Loading branch information
zulfaqar-azmi-t4 committed Apr 1, 2022
1 parent ed6bafe commit 2f98e60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions planning/behavior_path_planner/src/utilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1745,14 +1745,14 @@ PathWithLaneId getCenterLinePath(
}

bool checkLaneIsInIntersection(
const RouteHandler & route_handler, const PathWithLaneId & ref,
const RouteHandler & route_handler, const PathWithLaneId & reference_path,
const lanelet::ConstLanelets & lanelet_sequence, const double & lane_change_buffer,
double & additional_length_to_add)
{
if (lanelet_sequence.empty()) {
return false;
}
const auto & path_points = ref.points;
const auto & path_points = reference_path.points;
const auto last_arc_coordine =
lanelet::utils::getArcCoordinates(lanelet_sequence, path_points.back().point.pose);
const auto last_arc_length = last_arc_coordine.length;
Expand Down

0 comments on commit 2f98e60

Please sign in to comment.