Skip to content

Commit

Permalink
fix(start_planner): fix geometric pull out start pose (autowarefounda…
Browse files Browse the repository at this point in the history
…tion#4362)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Co-authored-by: Kotaro Yoshimoto <pythagora.yoshimoto@gmail.com>
  • Loading branch information
kosuke55 and HansRobo committed Aug 22, 2023
1 parent 783501f commit 05472a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ boost::optional<PullOutPath> GeometricPullOut::plan(Pose start_pose, Pose goal_p
const auto combined_path = combineReferencePath(partial_paths.at(0), partial_paths.at(1));
output.partial_paths.push_back(combined_path);
}
output.start_pose = planner_.getArcPaths().at(0).points.back().point.pose;
output.start_pose = planner_.getArcPaths().at(0).points.front().point.pose;
output.end_pose = planner_.getArcPaths().at(1).points.back().point.pose;

return output;
Expand Down

0 comments on commit 05472a8

Please sign in to comment.