Skip to content
Snippets Groups Projects
Select Git revision
  • d21ee7366feb8a53849bdd60883dcbe6bc039193
  • noetic/main default
  • noetic/feature/robotics-festival
  • ga-demo
  • ccnc-demo
  • noetic/feature/tags
  • noetic/realrobot
  • noetic/simulation protected
8 results

configure_console_output.sh

Blame
  • Forked from an inaccessible project.
    worldobject.h 354 B
    #include <vector>
    #ifndef ROBOT_MODELS_WO_H
    #define ROBOT_MODELS_WO_H
    #include "quaternion.h"
    using namespace std;
    class worldobject
    {
    
    
    public:
         vector<float> p1;// saw no purpose of using h3 here in WO ,its used seperately in hand class
    
         std::string name;
         double x,y,z,w;
        //no need of constructor here
    
    };
    #endif //ROBOT_MODELS_TEST_H