quickhull/Quickhull.h
2020-11-23 22:57:30 +01:00

14 lines
255 B
C++

#pragma once
#include <vector>
#include "Point.h"
class Quickhull
{
public:
static void get_hull(std::vector<Point> &, std::vector<Point> &);
private:
static void get_hull_with_line(std::vector<Point> &, std::vector<Point> &, Point, Point);
};