24 lines
643 B
C
24 lines
643 B
C
|
/********************************************************************/
|
||
|
/* STRIPE: converting a polygonal model to triangle strips
|
||
|
Francine Evans, 1996.
|
||
|
SUNY @ Stony Brook
|
||
|
Advisors: Steven Skiena and Amitabh Varshney
|
||
|
*/
|
||
|
/********************************************************************/
|
||
|
|
||
|
/*---------------------------------------------------------------------*/
|
||
|
/* STRIPE: outputex.h
|
||
|
-----------------------------------------------------------------------*/
|
||
|
|
||
|
|
||
|
#define TRIANGLE 3
|
||
|
#define MAGNITUDE 1000000
|
||
|
|
||
|
void Output_TriEx();
|
||
|
void Sgi_Test();
|
||
|
void Polygon_OutputEx();
|
||
|
void Extend_BackwardsEx();
|
||
|
void FinishedEx();
|
||
|
|
||
|
|