1 |
// Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle |
2 |
// |
3 |
// See the LICENSE.txt file for license information. Please report all |
4 |
// bugs and problems to <gmsh@geuz.org>. |
5 |
|
6 |
#ifndef _ROBUST_PREDICATES_H_ |
7 |
#define _ROBUST_PREDICATES_H_ |
8 |
|
9 |
// namespace necessary to avoid conflicts with predicates used by Tetgen |
10 |
namespace robustPredicates { |
11 |
double exactinit(); |
12 |
double incircle(double *pa, double *pb, double *pc, double *pd); |
13 |
double insphere(double *pa, double *pb, double *pc, double *pd, double *pe); |
14 |
double orient2d(double *pa, double *pb, double *pc); |
15 |
double orient3d(double *pa, double *pb, double *pc, double *pd); |
16 |
} |
17 |
|
18 |
#endif |