home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / povray3a / DocsDemo / pov / Halo23 < prev    next >
Text File  |  1996-05-31  |  893b  |  52 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "halo2.inc"
  7.  
  8. sphere { 0, 1.5
  9.   pigment { color rgbt <1, 1, 1, 1> }
  10.   halo {
  11.     attenuating
  12.     spherical_mapping
  13.     linear
  14.     turbulence 1
  15.     color_map {
  16.       [ 0 color rgbt <1, 0, 0,  1> ]
  17.       [ 1 color rgbt <1, 0, 0, -1> ]
  18.     } 
  19.     samples 10
  20.     scale <0.75, 0.5, 1>
  21.     translate <-0.4, 0, 0>
  22.   }
  23.   halo {
  24.     attenuating
  25.     spherical_mapping
  26.     linear
  27.     turbulence 1
  28.     color_map {
  29.       [ 0 color rgbt <1, 0, 0,  1> ]
  30.       [ 1 color rgbt <1, 0, 0, -1> ]
  31.     } 
  32.     samples 10
  33.     scale <0.75, 0.5, 1>
  34.     translate <0.4, 0, 0>
  35.   }
  36.   halo {
  37.     attenuating
  38.     spherical_mapping
  39.     linear
  40.     turbulence 1
  41.     color_map {
  42.       [ 0 color rgbt <1, 0, 0,  1> ]
  43.       [ 1 color rgbt <1, 0, 0, -1> ]
  44.     } 
  45.     samples 10
  46.     scale 0.5
  47.     translate <0, 0.2, 0>
  48.   }
  49.   hollow
  50. }
  51.  
  52.