https://github.com/cran/RandomFields
Raw File
Tip revision: fab3d29ef16569604858ee648b9e1f6f7d4a7c96 authored by Martin Schlather on 21 September 2014, 00:00:00 UTC
version 3.0.42
Tip revision: fab3d29
convhull2D.h
#ifndef CONVEX_H
#define CONVEX_H 1


/*******************************************************************************
 * convhull2D.h
 ****/
 

int ccw(double **P, int i, int j, int k);
int cmpl(const void *a, const void *b);
int cmph(const void *a, const void *b);
int make_chain(double** V, int n, int (*cmp)(const void*, const void*));
int ch2d(double **P, int n);

#endif /* CONVEX_H */
back to top