5#include <unordered_set>
8#include "software/geom/circle.h"
9#include "software/geom/point.h"
10#include "software/geom/rectangle.h"
24std::vector<Circle> findOpenCircles(
const Rectangle &bounding_box,
25 std::vector<Point> points);
35std::optional<Point> findClosestPoint(
const Point &origin_point,
36 const std::vector<Point> &test_points);
Definition rectangle.h:10