35 #include "dwb_critics/alignment_util.hpp"
43 geometry_msgs::msg::Pose2D getForwardPose(
const geometry_msgs::msg::Pose2D & pose,
double distance)
45 geometry_msgs::msg::Pose2D forward_pose;
46 forward_pose.x = pose.x + distance * cos(pose.theta);
47 forward_pose.y = pose.y + distance * sin(pose.theta);
48 forward_pose.theta = pose.theta;