home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / news / 2391 / form03 / formvue.pov < prev    next >
Text File  |  1994-01-24  |  1KB  |  75 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.  
  9. camera {
  10.    location <-40.0  20.0  -80.0>
  11.    up  <0.0  1.0  0.0>
  12.    right <1.33333 0.0 0.0>
  13.    look_at <0 0 0>
  14. }
  15.  
  16. // Light source
  17. object {
  18.    light_source {
  19.       <100 200 -300>
  20.       color White
  21.    }
  22. }
  23.  
  24. // Light source
  25. object {
  26.    light_source {
  27.       <-200 200 -100>
  28.       color White
  29.    }
  30. }
  31.  
  32. // Light source
  33. object {
  34.    light_source {
  35.       <200 200 100>
  36.       color White
  37.    }
  38. }
  39.  
  40.  
  41.  
  42. // Whitish background
  43. object {
  44.    sphere { <0 0 0> 10000 }
  45.    texture {
  46.       ambient 0.6  // Bath it in so much "light" that it doesn't have any shadows
  47.       diffuse 0.7
  48.       color Wheat;
  49.       brilliance 2
  50.    }
  51. }
  52.  
  53. #declare TEXTURE_1 = texture { 
  54.     colour Orange
  55.     phong_size 1
  56.     }
  57.  
  58. #include "temp.pov"
  59.  
  60. object {
  61.         TheFormObject
  62.         scale <7,7,7>
  63. }
  64.  
  65. // Floor plane , sort of greenish
  66. object {
  67.    plane { <0.0 -1.0 0.0> 0.0 }
  68.    translate <0 -100 0 >
  69.    texture {
  70.      colour HuntersGreen
  71.       ambient 0.15
  72.       diffuse 0.8
  73.    }
  74. }
  75.