You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This foreach loop is unnecessary and causing the issue. What you meant to write was "for each target, look at each corner to find it's min and max x and y". What you actually wrote was "for each target, look at ALL targets and determine the min and max x and y across all targets". Removing this loop should solve the issue. @Alex-idk
The text was updated successfully, but these errors were encountered:
2024SwerveBase/src/main/java/frc/robot/subsystems/NoteDetection.java
Line 114 in fc0fdbf
This foreach loop is unnecessary and causing the issue. What you meant to write was "for each target, look at each corner to find it's min and max x and y". What you actually wrote was "for each target, look at ALL targets and determine the min and max x and y across all targets". Removing this loop should solve the issue. @Alex-idk
The text was updated successfully, but these errors were encountered: