14 lines
296 B
C++
14 lines
296 B
C++
//
|
|
// 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
|