Skip to content
Snippets Groups Projects
Select Git revision
  • 1c945a6e63972c077103187b844b60175200dd2c
  • dev default protected
  • main protected
  • feature/ros-java-integration
4 results

Test.jadd

  • field.h 289 B
    #ifndef Field_
    #define Field_
    
    #include "ros/ros.h"
    #include "impl/abstract_robot_element.h"
    
    class Field  : public Abstract_robot_element{
        public:
        Field(tf2::Transform tf){ relative_tf_ = tf;}
        
        void update(tf2::Transform& tf) override {this->calc_world_tf(tf);}
    };
    
    #endif