mars
/build/rock-master-18.09-simulation-orogen-mars-0.20180420/poseType.hpp
Go to the documentation of this file.
1 #ifndef MARS_POSE_TYPE_HH
2 #define MARS_POSE_TYPE_HH
3 
4 #include <vector>
5 #include <string>
6 
7 namespace mars
8 {
9 
10 struct JointPos{
11  std::string name;
12  float pos;
13  };
14 
15 typedef std::vector<JointPos> Pose;
16 
17 }
18 #endif
float pos
Definition: poseType.hpp:12
Definition: poseType.hpp:10
Definition: jointTypes.hpp:9
std::string name
Definition: poseType.hpp:11
std::vector< JointPos > Pose
Definition: poseType.hpp:15