Warning, file /education/kstars/kstars/libtess/src/tessellate.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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);