mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-17 11:00:38 +02:00
14 lines
252 B
C
14 lines
252 B
C
typedef struct Vertex {
|
|
double pt[3];
|
|
int index;
|
|
struct Vertex *prev;
|
|
} Vertex;
|
|
|
|
void tessellate
|
|
(double **verts,
|
|
int *nverts,
|
|
int **tris,
|
|
int *ntris,
|
|
const double **contoursbegin,
|
|
const double **contoursend);
|