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

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