14 lines
255 B
C++
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);
|
|
}; |