Skip to content
Snippets Groups Projects
Select Git revision
  • 9fccea84d552c21c14ff19fda6d7ed9036849ecd
  • master default
2 results

worldobject.h

Blame
  • 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