home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma87a.dms / ma87a.adf / pov3c_1.lha / docsdemo / atmos5.pov < prev    next >
Text File  |  1996-11-07  |  1KB  |  63 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #version 3.0
  7.  
  8. global_settings { assumed_gamma 2.2 }
  9.  
  10. camera {
  11.   location <0, 6, -20>
  12.   look_at <0, 6, 0>
  13.   angle 48
  14. }
  15.  
  16. atmosphere {
  17.   type 1
  18.   samples 10     
  19.   distance 20
  20.   scattering 0.3
  21.   aa_level 3
  22.   aa_threshold 0.1
  23.   jitter 0.2
  24. }
  25.  
  26. light_source { <0, 15, 0> color red .7 green .7 blue .7 shadowless }
  27.  
  28. light_source { 
  29.   <-5, 15, 0> color rgb <1, 0, 0>
  30.   spotlight
  31.   point_at <-5, 0, 0>
  32.   radius 10
  33.   falloff 15
  34.   tightness 1
  35.   atmospheric_attenuation on
  36. }
  37.  
  38. light_source { 
  39.   <0, 15, 0> color rgb <0, 1, 0>
  40.   spotlight
  41.   point_at <0, 0, 0>
  42.   radius 10
  43.   falloff 15
  44.   tightness 1
  45.   atmospheric_attenuation on
  46. }
  47.  
  48. light_source { 
  49.   <5, 15, 0> color rgb <0, 0, 1>
  50.   spotlight
  51.   point_at <5, 0, 0>
  52.   radius 10
  53.   falloff 15
  54.   tightness 1
  55.   atmospheric_attenuation on
  56. }
  57.  
  58. plane { z, 10
  59.   pigment { checker color rgb<1, 0, 0> color rgb<0, 1, 0> }
  60.   hollow
  61. }
  62.  
  63.