home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / atari / GRAPHX / POV / 68030.060 / POV31G30 / POVRAY_3.1G / SCENES / ADVANCED / NEWLTPOT / TEAPOT4.POV < prev   
Text File  |  1999-10-30  |  1KB  |  48 lines

  1. // Persistence Of Vision raytracer version 3.1 sample file.
  2. // Full-blown Tiffany style teapot.  Reticulated gold body, with
  3. // gold wire trim
  4.  
  5.  
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9. #include "textures.inc"
  10. #include "golds.inc"
  11. #include "skies.inc"
  12.  
  13. camera {
  14.    location  <0, 4, -6>
  15.    direction <0, 0,  1.25>
  16.    up        <0, 1,  0>
  17.    right     <4/3, 0,  0>
  18.    look_at   <-0.25, 1.5, 0>
  19. }
  20.  
  21. light_source {<10, 20, -30> color White}
  22.  
  23. plane { y, -1
  24.     pigment { color red 0.13 green 0.37 blue 0.41  }
  25.     finish { ambient 0.1 }
  26. }
  27.  
  28. sky_sphere { S_Cloud1 }
  29.  
  30. #declare Cyl1_Pot = union { #include "teapot.c1" }
  31. #declare Cyl2_Pot = union { #include "teapot.c2" }
  32. #declare Cyl3_Pot = union { #include "teapot.c3" }
  33. #declare Tri_Pot = union { #include "teapot.tri" }
  34. union {
  35.     object { Cyl1_Pot texture { T_Gold_3C } }
  36.     object { Cyl2_Pot texture { T_Gold_3C } }
  37.     object { Cyl3_Pot texture { T_Gold_3C } }
  38.     object { Tri_Pot
  39.         texture { T_Gold_3C
  40.             normal { granite 0.3 scale 0.2 }
  41.         }
  42.     }
  43.     translate y*1
  44.     translate ((3.15-2.0)/2) * z
  45.     rotate -x*90
  46.     rotate y*60
  47. }
  48.