Skip to content
Snippets Groups Projects
Commit e54054cd authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fixed unused variable warnings

parent 6bf6fd7e
No related branches found
No related tags found
No related merge requests found
......@@ -269,6 +269,7 @@ namespace armarx
Eigen::VectorXf optimizationGradient(unsigned int id) override
{
int size = nodeSet->getSize();
(void) size;
Eigen::MatrixXf J = ik->getJacobianMatrix(tcp);//.block(0, 0, 3, size);
//Eigen::Vector3f d = eef->getGlobalPose().block<3,1>(0,3) - target;
......@@ -326,6 +327,7 @@ namespace armarx
Eigen::Vector3f shoulder_L = sho1_L->getPositionInRootFrame();
Eigen::Vector3f offset = (shoulder_R + shoulder_L) / 2;
(void) offset;
NaturalIK ik_R("Right", shoulder_R, 1);
NaturalIK ik_L("Left", shoulder_L, 1);
......
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