ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/outil/src/robustpredicates.h
Revision: 285
Committed: Sat Oct 8 00:28:41 2011 UTC (13 years, 8 months ago) by francois
Content type: text/plain
Original Path: magic/lib/outil/src/robustPredicates.h
File size: 630 byte(s)
Log Message:
mailleur de delaunay non contraint par les frontieres d'une carte de taille a priori 

File Contents

# Content
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