Skip to content
Snippets Groups Projects
Commit 9a495a57 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

[Pinocchio v2] stop using the old deprecated API

parent 02635c12
No related branches found
No related tags found
No related merge requests found
......@@ -756,11 +756,13 @@ computeGenericJacobian(const bool isFrame, const int jointId, dg::Matrix& res,co
//Computes Jacobian in world coordinates.
if(isFrame){
pinocchio::getJacobian<pinocchio::WORLD>(*m_model,*m_data,
m_model->frames[(pinocchio::Model::Index)jointId].parent,tmp);
pinocchio::getJacobian(*m_model,*m_data,
m_model->frames[(pinocchio::Model::Index)jointId].parent,
pinocchio::WORLD, tmp);
}
else
pinocchio::getJacobian<pinocchio::WORLD>(*m_model,*m_data,(pinocchio::Model::Index)jointId,tmp);
pinocchio::getJacobian(*m_model,*m_data,(pinocchio::Model::Index)jointId,
pinocchio::WORLD, tmp);
res = tmp;
sotDEBUGOUT(25);
return res;
......@@ -790,8 +792,8 @@ computeGenericEndeffJacobian(const bool isFrame, const bool isLocal, const int j
}
else {
//temp = m_model->getJointName((pinocchio::Model::Index)jointId);
pinocchio::getJacobian<pinocchio::LOCAL>
(*m_model,*m_data,(pinocchio::Model::Index)jointId,tmp);
pinocchio::getJacobian(*m_model,*m_data,(pinocchio::Model::Index)jointId,
pinocchio::LOCAL, tmp);
sotDEBUG(25) << "EndEffJacobian for "
<< m_model->getJointName((pinocchio::Model::Index)jointId)
<<" is "<<tmp<<std::endl;
......
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