home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / atari / GRAPHX / POV / 68030.060 / POV31G30 / POVRAY_3.1G / SCENES / CAMERA / BASICVUE.POV next >
Text File  |  1999-10-30  |  698b  |  38 lines

  1. // Persistence Of Vision raytracer version 3.1 sample file.
  2. // Use copies of this file for starting your own scenes.
  3.  
  4. global_settings { assumed_gamma 2.2 }
  5.  
  6. #include "colors.inc"
  7. #include "textures.inc"
  8.  
  9. camera {
  10.    location  <0, 3,-10>
  11.    direction <0, 0,  1>
  12.    up        <0, 1,  0>
  13.    right   <4/3, 0,  0>
  14.    look_at   <0, 2, 0>
  15. }
  16.  
  17. light_source {<10, 20, -30> color White}
  18.  
  19. sky_sphere { pigment { Blue } }
  20.  
  21. // Floor
  22. plane { y, 0
  23.    pigment {NeonBlue}
  24.    finish {ambient 0.15 diffuse 0.8}
  25. }
  26.  
  27. // Sphere object
  28. sphere { <0, 3, 0>, 3
  29.    pigment {Orange}
  30.    finish {
  31.       ambient 0.2
  32.       diffuse 0.7
  33.       phong 1
  34.       phong_size 80
  35.       brilliance 2
  36.    }
  37. }
  38.