Thunderbots Project
Loading...
Searching...
No Matches
rasterize.h
1#pragma once
2
3#include <vector>
4
5#include "software/geom/circle.h"
6#include "software/geom/polygon.h"
7#include "software/geom/rectangle.h"
8#include "software/geom/stadium.h"
9
22std::vector<Point> rasterize(const Circle &circle, double resolution_size);
23
33std::vector<Point> rasterize(const Rectangle &rectangle, double resolution_size);
34
42std::vector<Point> rasterize(const Polygon &polygon, double resolution_size);
43
51std::vector<Point> rasterize(const Stadium &stadium, double resolution_size);
Definition circle.h:10
Definition polygon.h:12
Definition rectangle.h:10
Definition stadium.h:12