home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / povsrc.sit / MACHINE / VAX.ZIP / VAX.C next >
Encoding:
Text File  |  1991-10-22  |  1.1 KB  |  40 lines

  1. /****************************************************************************
  2. *                vax.c
  3. *
  4. *  This module contains VAX/VMS 5.3 specific routines.
  5. *
  6. *  from Persistence of Vision Raytracer 
  7. *  Copyright 1991 Persistence of Vision Team
  8. *---------------------------------------------------------------------------
  9. *  Copying, distribution and legal info is in the file povlegal.doc which
  10. *  should be distributed with this file. If povlegal.doc is not available
  11. *  or for more info please contact:
  12. *
  13. *       Drew Wells [POV-Team Leader] 
  14. *       CIS: 73767,1244  Internet: 73767.1244@compuserve.com
  15. *       Phone: (213) 254-4041
  16. * This program is based on the popular DKB raytracer version 2.12.
  17. * DKBTrace was originally written by David K. Buck.
  18. * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  19. *
  20. *****************************************************************************/
  21.  
  22. void display_finished ()
  23.    {
  24.    }
  25.  
  26. void display_init ()
  27.    {
  28.    }
  29.  
  30. void display_close ()
  31.    {
  32.    }
  33.  
  34. void display_plot (x, y, Red, Green, Blue)
  35.    int x, y;
  36.    char Red, Green, Blue;
  37.    {
  38.    }
  39.