Skip to content

Commit

Permalink
Applied formatting to april_tags to fix workflow fail
Browse files Browse the repository at this point in the history
  • Loading branch information
VyaasBaskar committed Jan 25, 2025
1 parent 44c8886 commit 5b41ebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frc846/cpp/frc846/robot/swerve/odometry/pose_estimator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ PoseEstimator::PoseEstimator(

void PoseEstimator::Update(double pVar, double vVar, double aVar) {
filter.Predict(Eigen::Matrix<double, 6, 1>(
{{pVar}, {pVar}, {vVar}, {vVar}, {aVar}, {aVar}})
.asDiagonal());
{{pVar}, {pVar}, {vVar}, {vVar}, {aVar},
{aVar}}).asDiagonal());
state_ = filter.getEstimate();
}

Expand Down

0 comments on commit 5b41ebd

Please sign in to comment.