forked from organicmaps/organicmaps
Forgot to commit tesselator header
This commit is contained in:
parent
5e1c1dbc74
commit
b38b92a5b2
1 changed files with 13 additions and 0 deletions
13
geometry/tesselator.hpp
Normal file
13
geometry/tesselator.hpp
Normal 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);
|
||||
}
|
Loading…
Add table
Reference in a new issue