link_data.cpp
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.cpp
19  *
20  * Created on: Jan 11, 2016
21  * Author: SCH
22  */
23 
25 
26 namespace robotis_manipulator_h
27 {
28 
30 {
31  name_ = "";
32 
33  parent_ = -1;
34  sibling_ = -1;
35  child_ = -1;
36 
37  mass_ = 0.0;
38 
42  inertia_ = robotis_framework::getInertiaXYZ(0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
43 
44  joint_limit_max_ = 100.0;
45  joint_limit_min_ = -100.0;
46 
47  joint_angle_ = 0.0;
48  joint_velocity_ = 0.0;
49  joint_acceleration_ = 0.0;
50 
53  transformation_ = robotis_framework::getTransformationXYZRPY(0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
54 }
55 
57 {
58 }
59 
60 }
Eigen::MatrixXd center_of_mass_
Definition: link_data.h:41
Eigen::MatrixXd relative_position_
Definition: link_data.h:39
Eigen::MatrixXd joint_axis_
Definition: link_data.h:40
Eigen::Matrix4d getTransformationXYZRPY(double position_x, double position_y, double position_z, double roll, double pitch, double yaw)
Eigen::Vector3d getTransitionXYZ(double position_x, double position_y, double position_z)
Eigen::Matrix3d convertRPYToRotation(double roll, double pitch, double yaw)
Eigen::MatrixXd orientation_
Definition: link_data.h:52
Eigen::Matrix3d getInertiaXYZ(double ixx, double ixy, double ixz, double iyy, double iyz, double izz)
Eigen::MatrixXd transformation_
Definition: link_data.h:53


manipulator_h_kinematics_dynamics
Author(s): SCH
autogenerated on Mon Jun 10 2019 14:02:57