-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
41 port cvp mesh planner pkg to ros2 #46
Conversation
reformulate the README introduction
add usage section, wip.
virtual uint32_t makePlan(const geometry_msgs::msg::PoseStamped& start, | ||
const geometry_msgs::msg::PoseStamped& goal, | ||
double tolerance, | ||
std::vector<geometry_msgs::msg::PoseStamped>& plan, double& cost, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you have formatted each variable in a line, but not cost
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whoops, will fix it!
double cost_limit = 1.0; | ||
//! The vector field back tracking step width. | ||
double step_width = 0.4; | ||
} config_; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did this with member variables in the ftc_controller.
But i like this option, to use a struct member variable with all config options.
Maybe we can change it inside the ftc_controller and use this option for all mbf_plugins
This PR ports the cvp mesh planner pkg to ROS2 and fixes #41.
It also contains commits with changes to the README from
master
, which are inconsequential to #41. But it doesn't hurt to get these commits to the humble branch as well.Based on #44, so best review PR44 first.