ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

If you're working in C++ the tf::Transform class overloads the * operator to combine transformations. So it is as simple as:

tf::Transform A, B;

tf::Transform C = A * B;

see the reference here.