Hello @stephane-caron
As far as I understood the contact.velRef is not updated in FootstepPlan::updateInitialTransform function. So I think that this is a bug of the LIPM. I like to suggest adding the following commands to the mentioned function.
for(auto & contact : contacts_)
{
contact.refVel = (X_delta.rotation()).inverse() * contact.refVel;
}
Hello @stephane-caron
As far as I understood the
contact.velRefis not updated inFootstepPlan::updateInitialTransformfunction. So I think that this is a bug of the LIPM. I like to suggest adding the following commands to the mentioned function.