home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_060 / texsamps / stones / benediti.pov next >
Text File  |  1997-12-12  |  796b  |  44 lines

  1. // Persistence Of Vision Raytracer version 3.0 sample file.
  2.  
  3. global_settings { assumed_gamma 2.2 }
  4.  
  5. #include "colors.inc"
  6. #include "benediti.map"
  7.  
  8. camera {
  9.    location <0, 10, -20>
  10.    direction <0, 0,  3>
  11.    right x*1.33
  12.    look_at 1.5*y
  13. }
  14.  
  15. light_source {<-50, 50, -1000> color Gray75}
  16. light_source {< 50, 30, -20> color White}
  17.  
  18. background { color Gray30 }
  19.  
  20. #declare Stack =
  21. union {
  22.    sphere{<0, 4, 0>, 1}
  23.    cone { -y,1, y, 0.5 translate 2*y }
  24.    box { -1, 1 }
  25.    no_shadow
  26. }
  27.  
  28. object {
  29.     Stack
  30.     texture{
  31.         pigment {
  32.             crackle
  33.             turbulence 0.8
  34.             octaves 5
  35.             lambda 2.25
  36.             omega 0.707
  37.             color_map { M_Benediti }
  38.             phase 0.97
  39.             scale 1.3
  40.         }
  41.         finish { specular 0.85 roughness 0.0015 }
  42.     }
  43. }
  44.