home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4613 / inter.rrt < prev    next >
Text File  |  1994-06-11  |  774b  |  57 lines

  1.  
  2. #include "colors.inc"
  3. #include "textures.inc"
  4.  
  5. #declare obs = <0 0 -3>
  6.  
  7. #include "$ANIM$"
  8.  
  9. object {
  10.   intersection {
  11.     sphere { <0.5 0.5 0> 1 }
  12.     sphere { <-0.5 0.5 0> 1 }
  13.   }
  14.   texture { Phong_Mirror }
  15. }
  16.  
  17. object {
  18.   sphere { <0.6 -0.8 -1> 0.3 }
  19.   texture {
  20.     color Red
  21.     ambient 0.15
  22.     diffuse 0.15
  23.     reflection 0.8
  24.     phong 0.3
  25.     phong_size 75
  26.   }
  27. }
  28.  
  29. object {
  30.   plane { <0 1 0> -2 }
  31.   texture {
  32.     checker color Yellow color red 1.0 blue 0.75
  33.     scale <1 0 1>
  34.     ambient 0.15
  35.     diffuse 0.25
  36.   }
  37. }
  38.  
  39. camera {
  40.   location obs
  41.   point_at <0 0 0>
  42. }
  43.  
  44. environment {
  45.   background color Blue
  46. }
  47.  
  48. object {
  49.   light_source { <2 5 -4> color White }
  50. }
  51.  
  52. object {
  53.   light_source { <-3 4 -3> color White }
  54. }
  55.  
  56. end.
  57.