QXRD  0.11.16
triangulate.h
Go to the documentation of this file.
1 #ifndef TRIANGULATE_H
2 #define TRIANGULATE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 typedef struct {
9  int p1,p2,p3;
10 } ITRIANGLE;
11 typedef struct {
12  int p1,p2;
13 } IEDGE;
14 typedef struct {
15  double x,y,z;
16 } XYZ;
17 
18 extern int Triangulate(int nv,XYZ *pxyz,ITRIANGLE *v,int *ntri);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif // TRIANGULATE_H
int Triangulate(int nv, XYZ *pxyz, ITRIANGLE *v, int *ntri)
Definition: triangulate.c:41