]> git.mxchange.org Git - flightgear.git/blob - Stripe_u/sturcts.h
Tweaked output formatting a bit.
[flightgear.git] / Stripe_u / sturcts.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: sturcts.h
11 -----------------------------------------------------------------------*/
12
13 #define EVEN(x) (((x) & 1) == 0)
14
15 BOOL Get_Edge();
16 void add_vert_id();
17 void Update_Face();
18 int Min_Adj();
19 int Min_Face_Adj();
20 int Change_Face();
21 void Delete_Adj();
22 int Update_Adjacencies();
23 int Get_Output_Edge();
24 int Find_Face();
25
26
27
28
29
30
31