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

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. // POV-Ray sample image mapper data file
  4. // by Alexander Enzmann
  5. // NOTE: Requires "test.gif"
  6.  
  7. #include "colors.inc"
  8.  
  9. #declare Bi = 2
  10.  
  11. #declare Texture0 = /* Planar image map */
  12. texture {pigment{image_map { gif "test.gif" map_type 0 once interpolate Bi } } }
  13.  
  14. #declare Texture1 = /* Spherical image map */
  15. texture {pigment{image_map { gif "test.gif" map_type 1 interpolate Bi } } }
  16.  
  17. sphere { <0, 0, 0>, 1
  18.    texture { Texture1 }
  19.    scale 10 
  20.    rotate -90*y
  21.    translate <-12, 0, 20>
  22. }
  23.  
  24. plane {
  25.    z, 0 
  26.    clipped_by {box { <0, 0, -1>, <1, 1, 1> } }
  27.    texture { Texture0 }
  28.    translate <-0.5, -0.5, 0>
  29.    scale 20
  30.    rotate <20, 30, 0>
  31.    translate <12, 0, 20>
  32. }
  33.  
  34. camera {
  35.    location  <0, 0, -60>
  36.    direction <0, 0,   1>
  37.    up        <0, 0.5, 0>
  38.    right     <0.6666, 0, 0>
  39. }
  40.  
  41. light_source { <0, 300, -200> colour White }
  42.