home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / povray3a / POV3Demo / Halo / pov / Emitting < prev    next >
Text File  |  1996-07-04  |  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.