fixed a small error

This commit is contained in:
2026-02-21 12:27:25 -06:00
parent 1ad33fd45b
commit a695f19cc6

View File

@@ -99,7 +99,7 @@ public class Targeting {
int gridY = Math.abs(Math.floorDiv((int) robotInchesY, tileSize));
int remX = Math.floorMod((int) robotInchesX, tileSize);
int remY = Math.floorMod((int) robotInchesX, tileSize);
int remY = Math.floorMod((int) robotInchesY, tileSize);
// Determine if we need to interpolate based on tile position.
// if near upper or lower quarter or tile interpolate with next tile.