make IK compile on Mac OSX

This commit is contained in:
Erwin Coumans
2016-07-24 23:50:18 -07:00
parent 75e86051c2
commit 53fa57bdc4
9 changed files with 14 additions and 230 deletions

View File

@@ -113,6 +113,9 @@ void DoUpdateStep(double Tstep, Tree & treeY, Jacobian *jacob, int ikMethod) {
case IK_DLS:
jacob->CalcDeltaThetasDLS(); // Damped least squares method
break;
case IK_DLS_SVD:
jacob->CalcDeltaThetasDLSwithSVD();
break;
case IK_PURE_PSEUDO:
jacob->CalcDeltaThetasPseudoinverse(); // Pure pseudoinverse method
break;