Skip to content

Commit

Permalink
Merge pull request #1137 from tier4/hotfix/v0.20.1/avoidance-2
Browse files Browse the repository at this point in the history
fix(static_drivable_area_expansion): fix invalid z-pos (autowarefoundation#6357)
  • Loading branch information
shmpwk authored Feb 8, 2024
2 parents 91b8c62 + 36d52e9 commit bb0fec3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ std::pair<std::vector<lanelet::ConstPoint3d>, bool> getBoundWithFreeSpaceAreas(

if (intersect.has_value()) {
ret.emplace_back(
lanelet::InvalId, intersect.value().x, intersect.value().y, intersect.value().z);
lanelet::InvalId, intersect.value().x, intersect.value().y, toGeomMsgPt(bound.at(i)).z);
break;
}
}
Expand Down

0 comments on commit bb0fec3

Please sign in to comment.