Skip to content

Commit

Permalink
fix(behavior_velocity): revert offset for wall pose
Browse files Browse the repository at this point in the history
Signed-off-by: tanaka3 <[email protected]>
  • Loading branch information
taikitanaka3 committed Mar 1, 2022
1 parent e2b6420 commit 576c3f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ visualization_msgs::msg::MarkerArray createVirtualStopWallMarkerArray(
marker_virtual_wall.type = visualization_msgs::msg::Marker::CUBE;
marker_virtual_wall.action = visualization_msgs::msg::Marker::ADD;
marker_virtual_wall.pose = pose;
marker_virtual_wall.pose.position.z += 1.0 + offset_z;
marker_virtual_wall.pose.position.z += 1.0;
marker_virtual_wall.scale = createMarkerScale(0.1, 5.0, 2.0);
marker_virtual_wall.color = createMarkerColor(1.0, 0.0, 0.0, 0.5);
msg.markers.push_back(marker_virtual_wall);
Expand Down

0 comments on commit 576c3f0

Please sign in to comment.