home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / pov3demo / halo / emitting.pov < prev    next >
Text File  |  1997-12-12  |  642b  |  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. #include "shapes.inc"
  9. #include "textures.inc"
  10.  
  11. camera {
  12.    location <0, 0, -60>
  13.    look_at <0, 0, 0>
  14.    angle 5.5
  15. }
  16.  
  17. light_source{<40,40,-40> colour White}
  18.  
  19. #declare Textur =
  20. texture {
  21.    pigment {colour Clear}
  22.    halo {
  23.       linear
  24.       max_value 1.0
  25.       spherical_mapping
  26.       emitting
  27.       turbulence 0.5
  28.       colour_map {
  29.          [0 color rgbt <1,0,0,1>]
  30.          [1 color rgbt <1,1,0,0>]
  31.       }
  32.       samples 10
  33.    }
  34. }
  35.  
  36. object{Sphere hollow texture{ Textur } scale 1}
  37.  
  38.