Skip to content

Commit

Permalink
Take orientation into account in LMA
Browse files Browse the repository at this point in the history
- Inspired on e2bfa1c old iros2018 branch
  • Loading branch information
jgvictores committed Jan 19, 2018
1 parent a2e9576 commit 093594c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/YarpPlugins/KdlSolver/ICartesianSolverImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ bool roboticslab::KdlSolver::invKin(const std::vector<double> &xd, const std::ve

Eigen::Matrix<double, 6, 1> L;
L(0) = 1; L(1) = 1; L(2) = 1;
L(3) = 0; L(4) = 0; L(5) = 0;
L(3) = 0.1; L(4) = 0.1; L(5) = 0.1;

//-- Main invKin (pos) solver lines
KDL::ChainIkSolverPos_LMA iksolver_pos(chain, L);
Expand Down

0 comments on commit 093594c

Please sign in to comment.