home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / texsamps / woods / whiteash.pov < prev    next >
Text File  |  1997-12-12  |  612b  |  36 lines

  1. // Persistence Of Vision Raytracer version 3.0 sample file.
  2. #include "colors.inc"
  3. #include "woods.inc"
  4. #include "whiteash.map"
  5.  
  6. camera {
  7.    location <0, 10, -20>
  8.    direction <0, 0,  3>
  9.    right x*1.33
  10.    look_at 1.5*y
  11. }
  12.  
  13. light_source {<-50, 50, -1000> color Gray75}
  14. light_source {< 50, 30, -20> color White}
  15.  
  16. background { color Gray30 }
  17.  
  18. #declare Stack =
  19. union {
  20.    sphere{<0, 4, 0>, 1}
  21.    cone { -y,1, y, 0.5 translate 2*y }
  22.    box {-1,1}
  23.    no_shadow
  24. }
  25.  
  26. object {
  27.     Stack
  28.     texture{
  29.         pigment {
  30.             P_WoodGrain3A
  31.             color_map { M_WhiteAsh }
  32.             rotate x*85
  33.         }
  34.     }
  35. }
  36.