link_data.h
Go to the documentation of this file.
1 /*******************************************************************************
2 * Copyright 2017 ROBOTIS CO., LTD.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *******************************************************************************/
16 
17 /* Author: SCH */
18 
19 #ifndef LINK_DATA_H_
20 #define LINK_DATA_H_
21 
22 #include <eigen3/Eigen/Eigen>
23 
25 
26 namespace robotis_op
27 {
28 
29 class LinkData
30 {
31  public:
32  LinkData();
33  ~LinkData();
34 
35  std::string name_;
36 
37  int parent_;
38  int sibling_;
39  int child_;
40 
41  double mass_;
42 
43  Eigen::MatrixXd relative_position_;
44  Eigen::MatrixXd joint_axis_;
45  Eigen::MatrixXd center_of_mass_;
46  Eigen::MatrixXd inertia_;
47 
50 
51  double joint_angle_;
54 
55  Eigen::MatrixXd position_;
56  Eigen::MatrixXd orientation_;
57  Eigen::MatrixXd transformation_;
58 };
59 
60 }
61 
62 #endif /* LINK_DATA_H_ */
Eigen::MatrixXd joint_axis_
Definition: link_data.h:44
std::string name_
Definition: link_data.h:35
double joint_limit_min_
Definition: link_data.h:49
Eigen::MatrixXd relative_position_
Definition: link_data.h:43
double joint_acceleration_
Definition: link_data.h:53
Eigen::MatrixXd center_of_mass_
Definition: link_data.h:45
double joint_limit_max_
Definition: link_data.h:48
Eigen::MatrixXd position_
Definition: link_data.h:55
Eigen::MatrixXd transformation_
Definition: link_data.h:57
Eigen::MatrixXd inertia_
Definition: link_data.h:46
double joint_velocity_
Definition: link_data.h:52
Eigen::MatrixXd orientation_
Definition: link_data.h:56


op3_kinematics_dynamics
Author(s): SCH , Kayman , Jay Song
autogenerated on Mon Jun 10 2019 14:41:13