home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_060 / pov3demo / halo / glow.pov < prev    next >
Text File  |  1997-12-12  |  612b  |  38 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 <0, 10, -100>
  11.    look_at <0, 0, 0>
  12.    angle 3.3
  13. }
  14.  
  15. light_source{ <-50, 50, -50> colour White } 
  16.  
  17. sphere { 0, 1
  18.   hollow
  19.   texture {
  20.     pigment { colour Clear }
  21.     halo {
  22.     cubic
  23.       max_value 3
  24.       spherical_mapping
  25.       glowing
  26.       colour_map {
  27.         [0 color rgbt <1, 0, 0, 1> ]
  28.         [1 color rgbt <1, 1, 0, 0> ]
  29.       }
  30.       turbulence 1.6
  31.       samples 50
  32.       aa_level 4
  33.       aa_threshold 0.2
  34.     }
  35.   }
  36.  
  37.