-
Notifications
You must be signed in to change notification settings - Fork 195
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
Add motion planning pipeline tutorial #80
base: main
Are you sure you want to change the base?
Add motion planning pipeline tutorial #80
Conversation
target_include_directories(motion_planning_pipeline_tutorial | ||
PUBLIC include) |
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.
Should it be like this?
target_include_directories(motion_planning_pipeline_tutorial | |
PUBLIC include) | |
target_include_directories(motion_planning_pipeline_tutorial | |
PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>" | |
"$<INSTALL_INTERFACE:include>")) |
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.
Hey @cmelliott2 thanks for the review! I think these two points to the same include directory, but I'll have to check it out and let you know.
|
||
// Visualization | ||
// ^^^^^^^^^^^^^ | ||
// The package MoveItVisualTools provides many capabilities for visualizing objects, robots, | ||
// and trajectories in RViz as well as debugging tools such as step-by-step introspection of a script. | ||
namespace rvt = rviz_visual_tools; | ||
moveit_visual_tools::MoveItVisualTools visual_tools("panda_link0"); | ||
/* moveit_visual_tools::MoveItVisualTools visual_tools("panda_link0"); */ | ||
rviz_visual_tools::RvizVisualTools visual_tools("panda_link0", "moveit_cpp_tutorial", node); |
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.
res.getMessage(response); | ||
|
||
display_trajectory.trajectory_start = response.trajectory_start; | ||
display_trajectory.trajectory.push_back(response.trajectory); | ||
display_publisher.publish(display_trajectory); | ||
visual_tools.publishTrajectoryLine(display_trajectory.trajectory.back(), joint_model_group); | ||
display_publisher->publish(display_trajectory); |
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.
This pull request is in conflict. Could you fix it @vatanaksoytezer? |
@vatanaksoytezer this PR is over a year old, is it still relevant? |
Yeah it should actually, we just need to change it to use moveit_visual_tools and restructure according to new tutorials file structure |
Can that get prioritized in the next MoveIt sprint somehow? |
I'll take a look, since now we are clear on Humble release. |
This pull request is in conflict. Could you fix it @vatanaksoytezer? |
4 similar comments
This pull request is in conflict. Could you fix it @vatanaksoytezer? |
This pull request is in conflict. Could you fix it @vatanaksoytezer? |
This pull request is in conflict. Could you fix it @vatanaksoytezer? |
This pull request is in conflict. Could you fix it @vatanaksoytezer? |
Depends on moveit/moveit_resources#64