Templated convex_hull function in Geometry.cpp

This commit is contained in:
Lukas Matena
2018-08-17 15:20:35 +02:00
parent 3f72ca2a15
commit 48b9793d3d
4 changed files with 43 additions and 19 deletions

View File

@@ -221,6 +221,7 @@ public:
static Pointf new_unscale(const Point &p) {
return Pointf(unscale(p.x), unscale(p.y));
};
double ccw(const Pointf &p1, const Pointf &p2) const;
std::string wkt() const;
std::string dump_perl() const;
void scale(double factor);