1 #ifndef WORLDINTERFACE_H 2 #define WORLDINTERFACE_H 5 #include <tf/transform_listener.h> 8 #include "../../support/header/conversions.h" 23 int waitReady(std::string objName);
24 int waitReady(std::string firstFrame, std::string secondFrame);
27 int getwT(Eigen::Matrix4d *wTobj, std::string objName);
28 int getT(Eigen::Matrix4d* xTx_eigen, std::string firstFrame, std::string secondFrame);
29 int getwPos(Eigen::Vector3d* pos, std::string robotName);
34 std::string callerName;
35 tf::TransformListener tfListener;
39 #endif // WORLDINTERFACE_H The WorldInterface class to get position from world to anything else.
WorldInterface(std::string callerName)
WorldInterface.