Feature/96 go around object - #98
Open
kentohirogaki wants to merge 24 commits into
Open
Conversation
Contributor
Code Review Findings:
Modified Code:enum class TurningDirection { CLOCKWISE, COUNTER_CLOCKWISE };
double getRelativeAngle(
const double x1, const double y1, const double x2, const double y2,
const double minimum_delta = 0.1) const
{
const double delta_x = x2 - x1;
const double delta_y = y2 - y1;
const double relative_angle = std::atan2(delta_y, delta_x);
return relative_angle;
}enum class TurningDirection { CLOCKWISE, COUNTER_CLOCKWISE };
// Updated method with more descriptive comments
std::optional<geometry_msgs::msg::Pose> getTurningWaypointPoseOfObject(
const robotx_behavior_msgs::msg::TaskObject & obj, const double distance = 5.5,
const TurningDirection turning_direction = TurningDirection::COUNTER_CLOCKWISE,
const double waypoint_angle_deg = 90.0) const
{
// Method logic with comments explaining each step
}static BT::PortsList providedPorts()
{
return appendPorts(
ActionROS2Node::providedPorts(),
{BT::InputPort<std::string>("object_type"), BT::InputPort<std::string>("turning_direction"),
BT::InputPort<double>("orbit_angle"), BT::InputPort<double>("distance_from_object_to_goal")});
}void updateWaypointAngleDeg(const BehaviorState BehaviorState)
{
// Simplified logic with comments
}TEST(TestSuite, testCase1)
{
// Test case with specific assertions
}Note:
|
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.
ブイなどのまわりを旋回する指示をだす機能を追加。時計回りか反時計回りの指定や角度指定も可能。