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

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. // a very simple file to demonstrate image_map  - CdW
  4. // 7/29/91
  5. // NOTE: Requires "rough.gif"
  6.  
  7. #include "colors.inc"
  8. #include "textures.inc"
  9.  
  10. #declare Texture0 = /* Planar image map */
  11. texture {
  12.    pigment {
  13.        image_map { gif "rough.gif" map_type 0 interpolate 0 }
  14.    }
  15. }
  16.  
  17. camera {
  18.    location  <0, 20, -125>
  19.    direction <0,  0,    2>
  20.    up        <0,  1,    0>
  21.    right   <4/3,  0,    0>
  22.    look_at   <0, 25,    0> 
  23. }
  24.  
  25. // Sphere with radius 30 (diameter 60 )
  26.  
  27. sphere { <0, 25, 0>, 20
  28.    texture {Glass}
  29. }
  30.  
  31. plane { z, 150 
  32.    texture { Texture0 scale 90 }
  33. }
  34.  
  35. light_source {<100, 140, -130> colour White }
  36.