Skip to content
Snippets Groups Projects
Commit 53c3f712 authored by vahrenkamp's avatar vahrenkamp
Browse files

fixed missing parameter

git-svn-id: http://svn.code.sf.net/p/simox/code/trunk@764 042f3d55-54a8-47e9-b7fb-15903f145c44
parent f6081dd6
No related branches found
No related tags found
No related merge requests found
......@@ -92,12 +92,12 @@ namespace VirtualRobot
}
// tcp not in list yet?
if (find(tcp_set.begin(), tcp_set.end(), tcp) == tcp_set.end())
/*if (find(tcp_set.begin(), tcp_set.end(), tcp) == tcp_set.end())
{
tcp_set.push_back(tcp);
}
}*/
this->initialize();
initialize();
}
MatrixXf DifferentialIK::getJacobianMatrix()
......@@ -159,7 +159,7 @@ namespace VirtualRobot
VectorXf DifferentialIK::getError(float stepSize)
{
updateError(currentError);
updateError(currentError, stepSize);
return currentError;
}
......
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