https://github.com/cran/RandomFields
Raw File
Tip revision: 683e381531c37e8e7224edd899422f119d926418 authored by Martin Schlather on 21 January 2014, 00:00:00 UTC
version 3.0.10
Tip revision: 683e381
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