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

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. // Sample file:  A good starting point for your own test images.
  4.  
  5. #include "colors.inc"
  6.  
  7. camera {
  8.    location  <0, 20,-100>
  9.    direction <0,  0,   1>
  10.    up        <0,  1,   0>
  11.    right   <4/3,  0,   0>
  12. }
  13.  
  14. plane { y, -10
  15.    pigment {White}
  16.    finish {ambient 0.2 diffuse 0.8}
  17. }
  18.  
  19. sphere { <0, 25, 0>, 40
  20.    pigment {Red}
  21.    finish {
  22.       ambient 0.15
  23.       diffuse 0.75
  24.       phong 1
  25.       phong_size 100
  26.    }
  27. }
  28.  
  29. light_source {<100, 120, -40> colour White}
  30.