Skip to content

Commit

Permalink
fix(autoware_trajectory): fix bug of autoware_trajectory (autowarefou…
Browse files Browse the repository at this point in the history
…ndation#9314)

Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
  • Loading branch information
yhisaki authored Nov 13, 2024
1 parent 391beda commit 08038bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/autoware_trajectory/src/pose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ PointType Trajectory<PointType>::compute(double s) const
{
PointType result;
result.position = BaseClass::compute(s);
result.orientation = orientation_interpolator_->compute(s);
s = clamp(s);
result.orientation = orientation_interpolator_->compute(s);
return result;
}

Expand Down

0 comments on commit 08038bd

Please sign in to comment.