home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / news / 2391 / form03 / quickvue.pov < prev    next >
Text File  |  1994-01-24  |  728b  |  44 lines

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2.  
  3. // This scene file makes a good starting point for developing tests and
  4. // new scene files.  It is also used as the benchmark for the timing tests.
  5.  
  6. #include "colors.inc"
  7. #include "textures.inc"
  8. //#include "stones.inc"
  9. #include "shapes.inc"
  10.  
  11. camera {
  12.    location <-40.0,  20.0,  -80.0>
  13.    up  <0.0,  1.0,  0.0>
  14.    right <1.33333, 0.0, 0.0>
  15.    look_at <0, 0, 0>
  16. }
  17.  
  18. // Light source
  19. object {
  20.    light_source {
  21.       <100, 200, -300>
  22.       color White
  23.    }
  24. }
  25.  
  26.  
  27. #declare TEXTURE_1 = texture { 
  28.     pigment {
  29.             colour Orange
  30.             }
  31.     finish  {
  32.             phong_size 1
  33.             }
  34.     }
  35.  
  36. #include "temp.pov"
  37.  
  38. object {
  39.         TheFormObject
  40.         scale <7,7,7>
  41. }
  42.  
  43.  
  44.