Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 30, 2024
1 parent 3c133c3 commit c9af0f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RBDyn/ZMP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Eigen::Vector3d computeCentroidalZMPComplete(MultiBodyConfig & mbc,
denom = mass * g - wr_external.force()(2);
zmp(0) = com(0) - ((com(2) - altitude) * comA(0) * (mass * g / denom)) / (comA(2)) + wr_external.couple()(1) / denom
+ com(2) * wr_external.force()(0) / denom;
zmp(1) = com(1) - ((com(2) - altitude) * comA(1) * (mass * g / denom)) / (comA(2)) - wr_external.couple()(0) / denom
zmp(1) = com(1) - ((com(2) - altitude) * comA(1) * (mass * g / denom)) / (comA(2))-wr_external.couple()(0) / denom
+ com(2) * wr_external.force()(1) / denom;
zmp(2) = altitude;
return zmp;
Expand Down

0 comments on commit c9af0f8

Please sign in to comment.