This is a simple interactive applet demonstrating the calculation of a convex hull...
[micahsconvexhulldemo.git] / convexHull.h
blob5fc56e9d5301759ca84b987b8d04394393dc8d1d
1 #ifndef CONVEX_HULL_H
2 #define CONVEX_HULL_H
4 #include <vector>
5 #include "Vec2f.h"
7 void convexHull(const std::vector<Vec2f>& in_vs,
8 std::vector<Vec2f>& out_vs);
10 #endif