Skip to content

Commit

Permalink
fix(static_drivable_area_expansion): fix invalid z-pos (autowarefound…
Browse files Browse the repository at this point in the history
…ation#6357)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
  • Loading branch information
satoshi-ota authored and karishma1911 committed Jun 3, 2024
1 parent 309d429 commit d996372
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 d996372

Please sign in to comment.