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

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