MLIB
Loading...
Searching...
No Matches
chull.h
Go to the documentation of this file.
1#pragma once
21
22#if __has_include("defs.h")
23#include "defs.h"
24#endif
25
26#include "point.h"
27
28namespace mlib {
29
30int convex_hull (dpoint* p, int n);
31
32}
int convex_hull(dpoint *p, int n)
Find convex hull for an array of points.
Definition chull.cpp:102
Definition of Point template class.
Point< double > dpoint
Specialization of Point using double as underlining type.
Definition point.h:152