rectangle-union-area/areas.h

15 lines
296 B
C
Raw Permalink Normal View History

2022-04-16 11:41:48 +02:00
//
// Created by maximilian on 16.04.22.
//
#include <vector>
#include "geometry.h"
#ifndef PROG_AREAS_HPP
#define PROG_AREAS_HPP
Unit get_area_union(std::vector<Rectangle> rectangles);
std::vector<Rectangle> get_random_instance(unsigned num_rects, Coordinate range);
#endif //PROG_AREAS_HPP