41 lines
833 B
C
41 lines
833 B
C
/********************************************************************/
|
|
/* STRIPE: converting a polygonal model to triangle strips
|
|
Francine Evans, 1996.
|
|
SUNY @ Stony Brook
|
|
Advisors: Steven Skiena and Amitabh Varshney
|
|
*/
|
|
/********************************************************************/
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
/* STRIPE: common.h
|
|
-----------------------------------------------------------------------*/
|
|
|
|
void Add_AdjEdge();
|
|
void Find_Adjacencies();
|
|
void Add_Sgi_Adj();
|
|
int Num_Adj();
|
|
void Add_Id_Strips();
|
|
BOOL Look_Up();
|
|
int Number_Adj();
|
|
int Old_Adj();
|
|
int Min_Adj();
|
|
int Find_Face();
|
|
void Edge_Least();
|
|
void Get_Input_Edge();
|
|
int Get_Output_Edge();
|
|
void Check_In_Polygon();
|
|
void Check_In_Quad();
|
|
void New_Size_Face ();
|
|
void New_Face ();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|