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

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