home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / openglso.zip / Draw.h < prev    next >
C/C++ Source or Header  |  2000-02-16  |  791b  |  20 lines

  1. /*========================================================================= 
  2.  *                                 CS 488/688                                
  3.  *                          Introduction to Graphics                        
  4.  *                                                                         
  5.  *                           Assignment 1: OpenGL                         
  6.  *                                                                       
  7.  *=========================================================================*/
  8. #ifndef _DRAW_H
  9. #define _DRAW_H
  10.  
  11. /* Display Lists Used */
  12. #define UNIT_CUBE 1
  13.  
  14. extern void MakeUnitCube(void);
  15. extern void DrawPolygon(GrPolygon poly, GrVector3D normal);
  16. extern void DrawUnitCube(void);
  17. extern void InitGL(void);
  18.  
  19. #endif
  20.