testing 'tessellate' jni

This commit is contained in:
Hannes Janetzek
2013-06-15 16:49:42 +02:00
parent 674f1a6124
commit dce0507d36
34 changed files with 7080 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
typedef struct Vertex {
double pt[3];
int index;
struct Vertex *prev;
} Vertex;
//void tessellate
// (double **verts,
// int *nverts,
// int **tris,
// int *ntris,
// const float **contoursbegin,
// const float **contoursend);