home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga Shareware Floppies / ma87a.dms / ma87a.adf / pov3c_1.lha / docsdemo / halo03.pov < prev    next >
Text File  |  1996-11-07  |  392b  |  24 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "halo0.inc"
  7.  
  8. sphere { 0, 1
  9.   pigment { color rgbt <1, 1, 1, 1> }
  10.   halo {
  11.     emitting
  12.     spherical_mapping
  13.     linear
  14.     turbulence 1.5
  15.     color_map {
  16.       [ 0 color rgbt <1, 0, 0,  1.0> ]
  17.       [ 1 color rgbt <1, 1, 0, -1.0> ]
  18.     } 
  19.     samples 10
  20.   }
  21.   hollow
  22. }
  23.  
  24.