home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / povray3a / TexSamps / Skies / pov / Stars < prev   
Text File  |  1996-07-04  |  1KB  |  73 lines

  1. global_settings { assumed_gamma 2.2 }
  2. #include "colors.inc"
  3. #include "stars.inc"
  4.  
  5. camera {
  6.     location <0, 0, -100>
  7.     up y
  8.     right x*1.33
  9.     direction z
  10.     angle 25
  11. }
  12.  
  13. #declare Stripe=texture{pigment{White}finish{ambient 1 diffuse 0}}
  14.  
  15. #declare SF_123=
  16.  texture
  17.  {
  18.    gradient x
  19.    texture_map
  20.    {
  21.      [0/3+0.005 pigment{Cyan}finish{ambient 1 diffuse 0}]
  22.      [0/3+0.005 Starfield1]
  23.      [1/3       Starfield1]
  24.      [1/3       Stripe]
  25.      [1/3+0.005 Stripe]
  26.      [1/3+0.005 Starfield2]
  27.      [2/3       Starfield2]
  28.      [2/3       Stripe]
  29.      [2/3+0.005 Stripe]
  30.      [2/3+0.005 Starfield3]
  31.    }
  32.  }
  33.  
  34. #declare SF_456=
  35.  texture
  36.  {
  37.    gradient x
  38.    texture_map
  39.    {
  40.      [0/3+0.005 pigment{Cyan}finish{ambient 1 diffuse 0}]
  41.      [0/3+0.005 Starfield4]
  42.      [1/3       Starfield4]
  43.      [1/3       Stripe]
  44.      [1/3+0.005 Stripe]
  45.      [1/3+0.005 Starfield5]
  46.      [2/3       Starfield5]
  47.      [2/3       Stripe]
  48.      [2/3+0.005 Stripe]
  49.      [2/3+0.005 Starfield6]
  50.    }
  51.  }
  52.  
  53.  
  54.  
  55. plane {z,0
  56.  texture
  57.  {
  58.    gradient y
  59.    texture_map
  60.    {
  61.      [0/2+0.005 pigment{Cyan}finish{ambient 1 diffuse 0}]
  62.      [0/2+0.005 SF_456]
  63.      [1/2       SF_456]
  64.      [1/2       Stripe]
  65.      [1/2+0.005 Stripe]
  66.      [1/2+0.005 SF_123]
  67.    }
  68.    }
  69.    translate <-1/2,-1/2,0>
  70.    scale 40
  71.  }
  72.  
  73.