home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / atari / GRAPHX / POV / 68030.060 / POV31G30 / POVRAY_3.1G / SCENES / TEXTURES / SURFACES / WAVES.POV < prev    next >
Text File  |  1999-10-30  |  454b  |  31 lines

  1. // Persistence Of Vision raytracer version 3.1 sample file.
  2. // Waves pattern example
  3.  
  4.  
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #include "colors.inc"
  8.  
  9. #declare T1=
  10.  texture{
  11.    pigment{
  12.      waves
  13.      color_map{
  14.        [0.0  Black][1.0  White]
  15.      }
  16.      scale 0.1
  17.    }
  18.  }
  19.  
  20. #declare T2=
  21.  texture{
  22.    pigment{White}
  23.    normal{
  24.      waves 0.4
  25.      scale 0.1
  26.    }
  27.    finish{phong 0.8 phong_size 200}
  28.  }
  29.  
  30. #include "pignorm.inc"
  31.