home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_060 / pov3demo / halo / cloud.pov < prev    next >
Text File  |  1997-12-12  |  668b  |  42 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Dieter Bayer
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #include "colors.inc"
  8.  
  9. camera {
  10.   location <15, 0, -100>
  11.   look_at <0, 0, 0>
  12. }
  13.  
  14. light_source{<-20,100,-100> colour White}
  15.  
  16. background { color SkyBlue }
  17.  
  18. sphere { 0, 1
  19.   hollow
  20.   texture {
  21.     pigment { colour Clear }
  22.     halo {
  23.       linear
  24.       max_value 1
  25.       spherical_mapping
  26.       attenuating
  27.       turbulence 0.5
  28.       colour_map {
  29.         [0.0 color rgbt <1, 1, 1, 1>]
  30.         [1.0 color rgbt <0, 0, 0, 0>]
  31.       }
  32.       scale 0.7
  33.       samples 10
  34.       aa_level 0
  35.       aa_threshold 0.3
  36.     }
  37.   }
  38.   scale <50,20,20>
  39. }
  40.  
  41.  
  42.