5#include "software/geom/circle.h"
6#include "software/geom/polygon.h"
7#include "software/geom/rectangle.h"
8#include "software/geom/stadium.h"
22std::vector<Point> rasterize(
const Circle &circle,
double resolution_size);
33std::vector<Point> rasterize(
const Rectangle &rectangle,
double resolution_size);
42std::vector<Point> rasterize(
const Polygon &polygon,
double resolution_size);
51std::vector<Point> rasterize(
const Stadium &stadium,
double resolution_size);
Definition rectangle.h:10