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

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. #include "colors.inc"
  4. #include "textures.inc"
  5.  
  6. camera {
  7.    location  <0, 20,-125>
  8.    direction <0,  0,   2>
  9.    up        <0,  1,   0>
  10.    right   <4/3,  0,   0>
  11.    look_at   <0, 25,   0> 
  12. }
  13.  
  14. sphere { <0, 25, 0>, 20
  15.    pigment {Clear}
  16.    finish {
  17.       ambient 0.0
  18.       diffuse 0.0
  19.       specular 0.5
  20.       roughness 0.0001
  21.       reflection 0.2
  22.       refraction 1.0
  23.       ior 1.5
  24.    }
  25. }
  26.  
  27. sphere { <0, 0, 0>, 200
  28.    pigment {
  29.       Bright_Blue_Sky
  30.       scale <30, 10, 10>
  31.    }
  32.    finish {
  33.       ambient 1
  34.       diffuse 0.8
  35.    }
  36. }
  37.  
  38. light_source { <100, 140, -130> colour red 0.7 green 0.7 blue 0.7}
  39.