home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 2000 April & May / AMIGA_2000_04.iso / patches / mesa3.1 / mesa-aux.lha / src-aux.aos / shapes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-07-05  |  332 b   |  10 lines

  1. /*
  2.  * structure for each geometric object  
  3.  */
  4. typedef struct model {
  5.   GLuint list;                                       /* display list to render object */
  6.   struct model *ptr;                                   /* pointer to next object */
  7.   int numParam;                                       /* # of parameters */
  8.   GLdouble *params;                                   /* array with parameters */
  9. } MODEL, *MODELPTR;
  10.