Skip to content

Commit

Permalink
Merge pull request #7 from ROBOTIS-GIT/master
Browse files Browse the repository at this point in the history
Merge for sync kinetic-devel and master branch
  • Loading branch information
robotpilot authored Sep 1, 2016
2 parents 39679f2 + 13389ab commit c7731ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions robotis_math/include/robotis_math/step_data_define.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ typedef struct
{
int moving_foot;
double foot_z_swap, body_z_swap;
double x_zmp_shift, y_zmp_shift;
double shoulder_swing_gain, elbow_swing_gain;
double waist_roll_angle, waist_pitch_angle, waist_yaw_angle;
Pose3D left_foot_pose;
Expand Down
1 change: 1 addition & 0 deletions robotis_math/src/step_data_define.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ std::ostream& operator<<(std::ostream& out, const StepPositionData& position_dat
out << "[ BODY] " << position_data.body_pose << "\n";
out << "[ WAIST] " << "r/p/y: " << position_data.waist_roll_angle << "/" << position_data.waist_pitch_angle << "/" << position_data.waist_yaw_angle << "\n";
out << "[PARAMS] " << "moving_foot: " << dispatchMovingFoot(position_data.moving_foot) << " | foot_z_swap: " << position_data.foot_z_swap << " | body_z_swap: " << position_data.body_z_swap << "\n";
out << "[PARAMS] " << "x_zmp_shift: " << position_data.x_zmp_shift << " | y_zmp_shift: " << position_data.y_zmp_shift << "\n";
out << "[PARAMS] " << "shoulder_swing_gain: " << position_data.shoulder_swing_gain << " | elbow_swing_gain: " << position_data.elbow_swing_gain;
return out;
}
Expand Down

0 comments on commit c7731ad

Please sign in to comment.