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

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