repo.or.cz
/
micahsconvexhulldemo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This is a simple interactive applet demonstrating the calculation of a convex hull...
[micahsconvexhulldemo.git]
/
convexHull.h
blob
5fc56e9d5301759ca84b987b8d04394393dc8d1d
1
#ifndef CONVEX_HULL_H
2
#define CONVEX_HULL_H
3
4
#include <vector>
5
#include
"Vec2f.h"
6
7
void
convexHull
(
const
std
::
vector
<
Vec2f
>&
in_vs
,
8
std
::
vector
<
Vec2f
>&
out_vs
);
9
10
#endif