home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / povray3a / POV3Demo / Lights / pov / Cyllite1 next >
Text File  |  1996-03-10  |  782b  |  52 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Dan Farmer
  3. // Cylindrical spotlight example
  4.  
  5. #version 3.0
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9.  
  10. camera {
  11.     location <0, 2, -15>
  12.     direction z
  13.     look_at 0
  14. }
  15.  
  16. atmosphere {
  17.     type 1
  18.     samples 60
  19.     distance 100
  20.     scattering .75
  21.     aa_level 8
  22.     aa_threshold 0.2
  23.     jitter 0.05
  24. }
  25.  
  26. light_source { <-15,20,0> Red * 3
  27.     spotlight
  28.     cylinder
  29.     radius  1
  30.     falloff 4
  31.     point_at -y
  32. }
  33.  
  34. light_source { <-12,20,0> Yellow * 3
  35.     spotlight
  36.     cylinder
  37.     radius  1
  38.     falloff 4
  39.     point_at -y
  40. }
  41.  
  42. light_source { <-9,20,0> Blue * 3
  43.     spotlight
  44.     cylinder
  45.     radius  1
  46.     falloff 4
  47.     point_at -y
  48. }
  49.  
  50. plane { y,  0 pigment { White }  finish { ambient 0.25 } hollow }
  51.  
  52.