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

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Dents 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.      dents color_map{[0.0 Black][1.0 White]}
  13.      scale 0.24
  14.    }
  15.  }
  16.  
  17. #declare T2=
  18.  texture{
  19.    pigment{White}
  20.    normal{
  21.      dents 0.6
  22.      scale 0.24
  23.    }
  24.    finish{phong 0.8 phong_size 200}
  25.  }
  26.  
  27. #include "pignorm.inc"
  28.