More files for convex_hull

This commit is contained in:
Alessandro Ranellucci 2013-11-22 22:38:30 +01:00
parent 4577f0725c
commit 5309e3ef22
4 changed files with 103 additions and 0 deletions

12
xs/src/Geometry.hpp Normal file
View file

@ -0,0 +1,12 @@
#ifndef slic3r_Geometry_hpp_
#define slic3r_Geometry_hpp_
#include "Polygon.hpp"
namespace Slic3r {
void convex_hull(Points points, Polygon &hull);
}
#endif