Skip to content
Snippets Groups Projects
Commit b5f34c42 authored by mnaveau's avatar mnaveau
Browse files

add a slow velocity as input

parent 969bd77f
No related branches found
No related tags found
No related merge requests found
......@@ -252,6 +252,11 @@ namespace PatternGeneratorJRL
std::istringstream strm2(":setVelReference 0.0 0.0 0.0");
aPGI.ParseCmd(strm2);
}
void walkForwardSlow(PatternGeneratorInterface &aPGI)
{
std::istringstream strm2(":setVelReference 0.0001 0.0 0.0");
aPGI.ParseCmd(strm2);
}
void walkForward1m_s(PatternGeneratorInterface &aPGI)
{
std::istringstream strm2(":setVelReference 0.1 0.0 0.0");
......
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