Skip to content
Snippets Groups Projects
Commit b535c10d authored by Olivier Stasse's avatar Olivier Stasse
Browse files

Display information during regression test.

parent b194aa8e
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,28 @@ void CommonInitialization(PatternGeneratorInterface &aPGI)
InitLeftFootAbsPos,
InitRightFootAbsPos);
cout << "Starting COM Position: "
<< lStartingCOMPosition.x[0] << " "
<< lStartingCOMPosition.y[0] << " "
<< lStartingCOMPosition.z[0] << endl;
cout << "Starting Left Foot Pos: "
<< InitLeftFootAbsPos.x << " "
<< InitLeftFootAbsPos.y << " "
<< InitLeftFootAbsPos.z << " "
<< InitLeftFootAbsPos.theta<< " "
<< InitLeftFootAbsPos.omega << " "
<< InitLeftFootAbsPos.omega2 << " "
<< endl;
cout << "Starting Right Foot Pos: "
<< InitRightFootAbsPos.x << " "
<< InitRightFootAbsPos.y << " "
<< InitRightFootAbsPos.z << " "
<< InitRightFootAbsPos.theta<< " "
<< InitRightFootAbsPos.omega << " "
<< InitRightFootAbsPos.omega2 << " "
<< endl;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment