home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / pov3demo / surfaces / ripples.pov < prev    next >
Text File  |  1997-12-12  |  443b  |  31 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Ripples pattern example
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #include "colors.inc"
  8.  
  9. #declare T1=
  10.  texture{
  11.    pigment{
  12.      ripples 
  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.      ripples 0.4
  25.      scale 0.1
  26.    }
  27.    finish{phong 0.8 phong_size 200}
  28.  }
  29.  
  30. #include "pignorm.inc"
  31.