home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / SoundSwirl / globals.c < prev    next >
Encoding:
Text File  |  1992-12-15  |  503 b   |  21 lines  |  [TEXT/KAHL]

  1. /*****************
  2. ** global.c
  3. **
  4. ** location of all the global variables
  5. ******************/
  6.  
  7.  
  8. MenuHandle        gFileM, gEditM,
  9.                 gAppleM, gListenM;        /* handles to menus    */
  10. WindowPtr        gMainWindow;            /* the main window     */
  11. int                gListening=0;            /* Are we listening to input? */
  12.  
  13.  
  14. /*** circle drawing stuff ***/
  15.  
  16. #define PI 3.1415926
  17.  
  18. double gAngleStep=PI/36.0;  /* radians per step, initial=5° */
  19. short gOffset=0;      /* offset from radius */
  20. short gRadius=10;    /* radius size, default is 100 */
  21.