Skip to content

Commit

Permalink
Fix magic number
Browse files Browse the repository at this point in the history
  • Loading branch information
JornJorn committed Jul 19, 2024
1 parent 59da6b4 commit b52653d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ bool CameraGroundBallFilter::checkRobotCollision(const FilteredRobot& robot, con
return true;
}

auto botCircle = rtt::Circle(robotPos, 0.08 + 0.0213);
auto botCircle = rtt::Circle(robotPos, 0.07 + 0.0213);
auto intersects = botCircle.intersects(ballVelLine);

if (!intersects.empty()) {
Expand Down

0 comments on commit b52653d

Please sign in to comment.