File indexing completed on 2024-05-12 03:45:52

0001 typedef struct Vertex
0002 {
0003     double pt[3];
0004     int index;
0005     struct Vertex *prev;
0006 } Vertex;
0007 
0008 void tessellate(double **verts, int *nverts, int **tris, int *ntris, const double **contoursbegin,
0009                 const double **contoursend);