home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / icoons / source / tesselat.h < prev    next >
C/C++ Source or Header  |  1992-10-03  |  308b  |  14 lines

  1. #ifndef TESSELATE_H
  2. #define TESSELATE_H
  3.  
  4. typedef struct {
  5.     void (*Patch_Begin)(void);
  6.     void (*Patch_Generate_Face)(Vector_T Point0, Vector_T Point1, 
  7.                            Vector_T Point2, Vector_T Point3);
  8.     void (*Patch_End)(void);
  9. } Tesselate_Info_T;
  10.  
  11. Boolean_T Tesselate_Object(Tesselate_Info_T *TI);
  12.  
  13. #endif
  14.