mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[wpimath] Fix misspelled Javadoc parameters in pose estimators (NFC) (#5292)
This commit is contained in:
@@ -339,7 +339,7 @@ public class DifferentialDrivePoseEstimator {
|
||||
/**
|
||||
* Constructs an Interpolation Record with the specified parameters.
|
||||
*
|
||||
* @param pose The pose observed given the current sensor inputs and the previous pose.
|
||||
* @param poseMeters The pose observed given the current sensor inputs and the previous pose.
|
||||
* @param gyro The current gyro angle.
|
||||
* @param leftMeters The distance traveled by the left encoder.
|
||||
* @param rightMeters The distanced traveled by the right encoder.
|
||||
|
||||
@@ -316,7 +316,7 @@ public class MecanumDrivePoseEstimator {
|
||||
/**
|
||||
* Constructs an Interpolation Record with the specified parameters.
|
||||
*
|
||||
* @param pose The pose observed given the current sensor inputs and the previous pose.
|
||||
* @param poseMeters The pose observed given the current sensor inputs and the previous pose.
|
||||
* @param gyro The current gyro angle.
|
||||
* @param wheelPositions The distances traveled by each wheel encoder.
|
||||
*/
|
||||
|
||||
@@ -324,9 +324,9 @@ public class SwerveDrivePoseEstimator {
|
||||
/**
|
||||
* Constructs an Interpolation Record with the specified parameters.
|
||||
*
|
||||
* @param pose The pose observed given the current sensor inputs and the previous pose.
|
||||
* @param poseMeters The pose observed given the current sensor inputs and the previous pose.
|
||||
* @param gyro The current gyro angle.
|
||||
* @param wheelPositions The distances and rotations measured at each wheel.
|
||||
* @param modulePositions The distances and rotations measured at each wheel.
|
||||
*/
|
||||
private InterpolationRecord(
|
||||
Pose2d poseMeters, Rotation2d gyro, SwerveModulePosition[] modulePositions) {
|
||||
|
||||
Reference in New Issue
Block a user