Skip to content
Snippets Groups Projects
Select Git revision
  • 332a231bd8d322e789dc6ed247814f161918fa5f
  • main default protected
2 results

abstract_robot.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