Added triangulation routine

This commit is contained in:
Robert 2021-04-16 15:16:00 +02:00
parent 045f3a8439
commit 6ea55594ab
25 changed files with 891530 additions and 171 deletions

14
include/multipolygon.hpp Normal file
View file

@ -0,0 +1,14 @@
#pragma once
#include <memory>
#include <osmrelation.hpp>
class Multipolygon
{
public:
Multipolygon(const std::shared_ptr<osmp::Relation>& relation, int width, int height, osmp::Bounds bounds);
private:
};