Skip to content

Commit

Permalink
fix(autoware_perception_rviz_plugin): fix orientation indication rend…
Browse files Browse the repository at this point in the history
…ering fix (#9434)

refactor: fix orientation indication rendering fix

Signed-off-by: Taekjin LEE <[email protected]>
  • Loading branch information
technolojin authored Nov 25, 2024
1 parent 536c805 commit 341ea15
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -728,10 +728,10 @@ void calc_2d_bounding_box_bottom_orientation_line_list(

// front corner cuts for orientation
const double point_list[4][3] = {
{length_half, width_half - tick_width, height_half},
{length_half - tick_length, width_half, height_half},
{length_half, -width_half + tick_width, height_half},
{length_half - tick_length, -width_half, height_half},
{length_half, width_half - tick_width, -height_half},
{length_half - tick_length, width_half, -height_half},
{length_half, -width_half + tick_width, -height_half},
{length_half - tick_length, -width_half, -height_half},
};
const int point_pairs[2][2] = {
{0, 1},
Expand Down

0 comments on commit 341ea15

Please sign in to comment.