@@ -69,7 +69,7 @@ private VisionFieldPoseEstimate fuseEstimates(
6969 Pose2d poseA = a .getVisionRobotPoseMeters ().transformBy (a_T_b );
7070 Pose2d poseB = b .getVisionRobotPoseMeters ();
7171
72- // Inverse‑ variance weighting
72+ // Inverse- variance weighting
7373 var varianceA = a .getVisionMeasurementStdDevs ().elementTimes (a .getVisionMeasurementStdDevs ());
7474 var varianceB = b .getVisionMeasurementStdDevs ().elementTimes (b .getVisionMeasurementStdDevs ());
7575
@@ -233,7 +233,7 @@ private Optional<VisionFieldPoseEstimate> fuseWithGyro(
233233 return Optional .empty ();
234234 }
235235
236- // Reject if the robot is yawing rapidly (time‑ sync unreliable)
236+ // Reject if the robot is yawing rapidly (time- sync unreliable)
237237 final double kHighYawLookbackS = 0.3 ;
238238 final double kHighYawVelocityRadS = 5.0 ;
239239
@@ -290,7 +290,7 @@ private Optional<VisionFieldPoseEstimate> processMegatagPoseEstimate(
290290 return Optional .empty ();
291291 }
292292
293- // Single‑ tag extra checks
293+ // Single- tag extra checks
294294 if (poseEstimate .fiducialIds ().length < 2 ) {
295295 for (var fiducial : cam .fiducialObservations ) {
296296 if (fiducial .ambiguity () > VisionConstants .kDefaultAmbiguityThreshold ) {
@@ -326,7 +326,7 @@ private Optional<VisionFieldPoseEstimate> processMegatagPoseEstimate(
326326 return Optional .empty ();
327327 }
328328
329- // Exclusive‑ tag filtering
329+ // Exclusive- tag filtering
330330 var exclusiveTag = state .getExclusiveTag ();
331331 boolean hasExclusiveId =
332332 exclusiveTag .isPresent ()
0 commit comments