Forgot to commit tesselator header

This commit is contained in:
Alex Zolotarev 2011-01-28 22:24:37 +02:00 committed by Alex Zolotarev
parent 5e1c1dbc74
commit b38b92a5b2

13
geometry/tesselator.hpp Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#include "point2d.hpp"
#include "../std/list.hpp"
namespace tesselator
{
typedef vector<m2::PointD> points_container;
typedef list<points_container> holes_container;
void TesselateInterior(points_container const & bound, holes_container const & holes,
points_container & triangles);
}