OMPL and Qt API update, bump cmake minimum version requirement#6136
Draft
mini-1235 wants to merge 2 commits into
Draft
OMPL and Qt API update, bump cmake minimum version requirement#6136mini-1235 wants to merge 2 commits into
mini-1235 wants to merge 2 commits into
Conversation
Signed-off-by: mini-1235 <mauricepurnawan@gmail.com>
Collaborator
Author
|
I figured out that the EventsExecutor wasn't included in the last rolling sync, but we do have it in Lyrical, so it seems easier for me to test it in Lyrical :) This PR fixes all the compile errors but is not ready to review/merge, I am opening as draft to check the backward compatibility for Jazzy/Kilted. It also depends on ros2/message_filters#292, ros/rosdistro#51321, BehaviorTree/BehaviorTree.CPP#1139, and an upstream OMPL sync, we should probably merge this after we migrate to Ubuntu 26.04 (most fixes here are related to 26.04 using g++15) |
| * @param radius New circle radius to update polygon | ||
| */ | ||
| void updatePolygon(double radius); | ||
| void updatePolygonFromRadius(double radius); |
|
|
||
| // Check if it is not same with the current one | ||
| if (goal_.path != new_path && new_path != nav_msgs::msg::Path()) { | ||
| if (goal_.path != new_path && !new_path.poses.empty()) { |
| tf2_ros::Buffer & tf_; | ||
| std::string robot_base_frame_; | ||
| double transform_tolerance_; | ||
| bool footprint_received_{false}; |
| } | ||
|
|
||
| virtual bool rotateToObject(geometry_msgs::msg::PoseStamped &) | ||
| virtual bool rotateToObject(geometry_msgs::msg::PoseStamped &, const std::string &) |
| EXPECT_EQ(a.asWrapped<bool>(bool_p), false); | ||
| EXPECT_EQ(a.asWrapped<std::string>(string_p), std::string("hello")); | ||
|
|
||
| EXPECT_EQ(a.asWrapped<std::vector<int64_t>>(intv_p)[0], 1); |
| * @return The number of direction changes in the path | ||
| */ | ||
| int countDirectionChanges(const ompl::base::ReedsSheppStateSpace::ReedsSheppPath & path); | ||
| int countDirectionChanges(const ompl::base::ReedsSheppStateSpace::PathType & path); |
| // Connect buttons with functions | ||
| QObject::connect( | ||
| use_dock_id_checkbox_, &QCheckBox::stateChanged, this, &DockingPanel::dockIdCheckbox); | ||
| use_dock_id_checkbox_, &QCheckBox::checkStateChanged, this, &DockingPanel::dockIdCheckbox); |
| QObject::connect( | ||
| store_initial_pose_checkbox_, | ||
| &QCheckBox::stateChanged, | ||
| &QCheckBox::checkStateChanged, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Basic Info
Description of contribution in a few bullet points
Description of documentation updates required from your changes
Description of how this change was tested
Future work that may be required in bullet points
For Maintainers:
backport-*.