home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 13 Bitmap / 13-Bitmap.zip / povscn.zip / scenes / level1 / imagetst.pov < prev    next >
Text File  |  1993-09-28  |  814b  |  36 lines

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2. // NOTE: Requires "rough.gif"
  3. #include "colors.inc"
  4.  
  5. camera {
  6.    location  <0, 0, -120>
  7.    direction <0, 0,  1.5>
  8.    up        <0, 1,  0>
  9.    right   <4/3, 0,  0>
  10.    look_at   <0, 0,  0>
  11. }
  12.  
  13. sphere { <0, 0, 0>, 25
  14.    pigment {
  15.       image_map {
  16.          gif "rough.gif"
  17.          // try different interpolation types
  18.          //        interpolate 4
  19.          interpolate 2
  20.          once
  21.       }
  22.       scale 50              /* scaled and translated into position  */
  23.       translate <-25, -25, 0>
  24.    }
  25.    finish {ambient 0.2 diffuse 0.7 specular 0.6}
  26. }
  27.  
  28. plane { y, -25
  29.    pigment {Gold}
  30.    finish {ambient 0.1 diffuse 0.5}
  31. }
  32.  
  33. light_source { <100,  120, -130> colour White }
  34.  
  35. light_source { <-100, 100, -130> colour White }
  36.