]> git.mxchange.org Git - flightgear.git/blob - Stripe_w/polyvertsex.h
Changed polygon index counter file.
[flightgear.git] / Stripe_w / polyvertsex.h
1 /********************************************************************/
2 /*   STRIPE: converting a polygonal model to triangle strips    
3      Francine Evans, 1996.
4      SUNY @ Stony Brook
5      Advisors: Steven Skiena and Amitabh Varshney
6 */
7 /********************************************************************/
8
9 /*---------------------------------------------------------------------*/
10 /*   STRIPE: polvertsex.h
11 -----------------------------------------------------------------------*/
12
13 #ifdef HAVE_CONFIG_H
14 #  include <config.h>
15 #endif
16
17 #ifdef HAVE_STDLIB_H
18 #  include <stdlib.h>
19 #else
20 #  include <malloc.h>
21 #endif
22
23 #include "queue.h"
24
25 /*      external functions */
26 void Start_Vert_Struct();
27 void Start_Face_StructEx();
28 void Start_Edge_StructEx();
29 void AddNewNode();
30 void AddNewFaceEx();      
31 void Find_AdjacenciesEx();
32 void Test_Adj_Struct();
33 void Test_SGI_Struct();
34 void Write_Edges();
35 void End_Verts_Struct();
36 void End_Face_StructEx();
37 void End_Edge_StructEx();
38 void Build_SGI_TableEx();
39 void Add_AdjEdgeEx();
40
41
42