Advertisement
Guest User

glucylinder.h

a guest
May 11th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. void myKeyboardFunc( unsigned char key, int x, int y );
  2. void mySpecialKeyFunc( int key, int x, int y );
  3.  
  4. void drawScene(void);
  5.  
  6. void initRendering();
  7. void resizeWindow(int w, int h);
  8.  
  9. // ********************************************************
  10. // These are four general purpose routines for generating
  11. // cylinders, with or without caps.
  12. // *********************************************************
  13. void drawGluCylinder( double height, double radius, int slices, int stacks );
  14. void drawGluSlantCylinder( double height, double radiusBase, double radiusTop, int slices, int stacks );
  15. void drawGluCylinderWithCaps( double height, double radius, int slices, int stacks );
  16. void drawGluSlantCylinderWithCaps( double height, double radiusBase, double radiusTop, int slices, int stacks );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement