home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / povray3a / DocsDemo / pov / Fog6 < prev    next >
Text File  |  1996-05-31  |  465b  |  36 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "fog.inc"
  7.  
  8. fog { 
  9.   distance 150 
  10.   colour rgb<0.3, 0.5, 0.2> 
  11.   fog_type 2
  12.   fog_offset 25
  13.   fog_alt 1
  14.   turbulence 0.1
  15.   turb_depth 0.2
  16. }
  17.  
  18. fog { 
  19.   distance 150 
  20.   colour rgb<0.5, 0.1, 0.1> 
  21.   fog_type 2
  22.   fog_offset 15
  23.   fog_alt 4
  24.   turbulence 0.2
  25.   turb_depth 0.2
  26. }
  27.  
  28. fog { 
  29.   distance 150 
  30.   colour rgb<0.1, 0.1, 0.6> 
  31.   fog_type 2
  32.   fog_offset 10
  33.   fog_alt 2
  34. }
  35.  
  36.