Skip to content

Commit f103d17

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5076701 commit f103d17

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/kinematic-planner.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ void KinematicPlanner::blending() {
437437
currentWeight2.push_back(intWeightCSrc);
438438
}
439439
} //(cG!=nGaitCycles-1)
440-
} //(t>nTimeSteps*9/10)
440+
} //(t>nTimeSteps*9/10)
441441

442442
// Start Mixing all sources
443443
for (int cJ = 0; cJ < nJoints; cJ++) {

src/seqplay.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -534,9 +534,9 @@ Vector& Seqplay::computeAnkleVelocity(
534534
R0_ = M0.linear();
535535
R0t_ = R0_.transpose();
536536
R1R0t_ = R1_ * R0t_;
537-
velocity(3) = (R1R0t_(2, 1)) * dt;
538-
velocity(4) = (R1R0t_(0, 2)) * dt;
539-
velocity(5) = (R1R0t_(1, 0)) * dt;
537+
velocity(3) = (R1R0t_(2, 1))*dt;
538+
velocity(4) = (R1R0t_(0, 2))*dt;
539+
velocity(5) = (R1R0t_(1, 0))*dt;
540540
}
541541

542542
return velocity;

0 commit comments

Comments
 (0)