Skip to content

Commit

Permalink
fix joint state value order
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacsge11 committed Nov 25, 2024
1 parent 5c9b14c commit 5feb3e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ int main(int argc, char * argv[])
std::thread([&executor]() { executor.spin(); }).detach();

moveItCollisionAvoidanceExample(example_node,
std::vector<double>{0.2111, -0.9106, 0.0, -1.8677, 1.2075, -0.2111},
std::vector<double>{0.2111, -0.9106, 1.2075, 0.0, -1.8677, -0.2111},
geometry_msgs::build<geometry_msgs::msg::Vector3>().x(0.1).y(0).z(1.2),
geometry_msgs::build<geometry_msgs::msg::Vector3>().x(0.3).y(-0.075).z(1),
geometry_msgs::build<geometry_msgs::msg::Vector3>().x(0.1).y(1.0).z(0.1));
Expand Down

0 comments on commit 5feb3e9

Please sign in to comment.