home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / PVDAT.ZIP / SIMPLE.DAT < prev    next >
Encoding:
Text File  |  1991-09-06  |  768 b   |  43 lines

  1. // Persistence of Vision Raytracer
  2. // Sample file
  3.  
  4. #include "shapes.dat"
  5. #include "colors.dat"
  6. #include "textures.dat"
  7.  
  8. view_point
  9.    location <0.0  20.0  -100.0>
  10.    direction <0.0 0.0  1.0>
  11.    up  <0.0  1.0  0.0>
  12.    right <1.33333 0.0 0.0>
  13. end_view_point
  14.  
  15. object
  16.    plane <0.0 1.0 0.0> -10.0 end_plane
  17.    colour White
  18.    texture
  19.       colour White
  20.       ambient 0.2
  21.       diffuse 0.8
  22.    end_texture
  23. end_object
  24.  
  25. object
  26.    sphere <0.0  25.0  0.0>  40.0 end_sphere
  27.    texture
  28.       colour CRed
  29.    end_texture
  30. end_object
  31.  
  32. object
  33.    sphere <0.0  0.0  0.0>  2.0 end_sphere
  34.    translate <100.0  120.0  40.0>
  35.    texture
  36.       colour White
  37.       ambient 1.0
  38.       diffuse 0.0
  39.    end_texture
  40.    light_source
  41.    colour White
  42. end_object
  43.