Thunderbots Project
Loading...
Searching...
No Matches
intercept.h
1#pragma once
2
3#include <optional>
4
5#include "software/geom/point.h"
6#include "software/world/ball.h"
7#include "software/world/field.h"
8#include "software/world/robot.h"
9
22std::optional<std::pair<Point, Duration>> findBestInterceptForBall(const Ball &ball,
23 const Field &field,
24 const Robot &robot);
Definition ball.h:11
Definition field.h:36
Definition robot.h:16