]> git.mxchange.org Git - flightgear.git/blob - Stripe_w/outputex.h
Removed forced -g compiler flag.
[flightgear.git] / Stripe_w / outputex.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: outputex.h
11 -----------------------------------------------------------------------*/
12
13
14 #include "polverts.h"
15
16
17 #define TRIANGLE 3
18 #define MAGNITUDE 1000000
19
20 void Output_TriEx(int id1, int id2, int id3, FILE *output, int next_face, 
21                   int flag, int where);
22 void Sgi_Test();
23 void Polygon_OutputEx(P_ADJACENCIES temp,int face_id,int bucket,
24                       ListHead *pListHead, FILE *output, FILE *strips,
25                       int *ties, int tie, int triangulate, int swaps,
26                       int *next_id, int where);
27 void Extend_BackwardsEx(int face_id, FILE *output, FILE *strip, int *ties, 
28                         int tie, int triangulate, int swaps,int *next_id);
29 void FinishedEx();
30
31