link_data.h
Go to the documentation of this file.
1 /*******************************************************************************
2 * Copyright 2018 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 /*
18  * link_data.h
19  *
20  * Created on: June 7, 2016
21  * Author: SCH
22  */
23 
24 #ifndef THORMANG3_KINEMATICS_DYNAMICS_LINK_DATA_H_
25 #define THORMANG3_KINEMATICS_DYNAMICS_LINK_DATA_H_
26 
27 #define EIGEN_NO_DEBUG
28 #define EIGEN_NO_STATIC_ASSERT
29 
30 #include <eigen3/Eigen/Eigen>
32 
33 namespace thormang3
34 {
35 
36 class LinkData
37 {
38 public:
39 
40  LinkData();
41  ~LinkData();
42 
43  std::string name_;
44 
45  int parent_;
46  int sibling_;
47  int child_;
48 
49  double mass_;
50 
51  Eigen::MatrixXd relative_position_;
52  Eigen::MatrixXd joint_axis_;
53  Eigen::MatrixXd center_of_mass_;
54  Eigen::MatrixXd inertia_;
55  Eigen::MatrixXd joint_center_of_mass_;
56 
59 
60  double joint_angle_;
63 
64  Eigen::MatrixXd position_;
65  Eigen::MatrixXd orientation_;
66  Eigen::MatrixXd transformation_;
67 
68 };
69 
70 }
71 
72 #endif /* THORMANG3_KINEMATICS_DYNAMICS_LINK_DATA_H_ */
Eigen::MatrixXd joint_center_of_mass_
Definition: link_data.h:55
Eigen::MatrixXd orientation_
Definition: link_data.h:65
double joint_acceleration_
Definition: link_data.h:62
double joint_limit_max_
Definition: link_data.h:57
Eigen::MatrixXd position_
Definition: link_data.h:64
double joint_limit_min_
Definition: link_data.h:58
Eigen::MatrixXd joint_axis_
Definition: link_data.h:52
Eigen::MatrixXd center_of_mass_
Definition: link_data.h:53
Eigen::MatrixXd transformation_
Definition: link_data.h:66
double joint_velocity_
Definition: link_data.h:61
Eigen::MatrixXd relative_position_
Definition: link_data.h:51
Eigen::MatrixXd inertia_
Definition: link_data.h:54
std::string name_
Definition: link_data.h:43


thormang3_kinematics_dynamics
Author(s): SCH
autogenerated on Mon Jun 10 2019 15:37:49