home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / raytrace / rayce27 / disctest.r < prev    next >
Encoding:
Text File  |  1994-01-09  |  405 b   |  14 lines

  1. // towers of hanoi.
  2. camera {
  3.   location <0, 10, -12>
  4.   look_at 3*y
  5. }
  6. composite { 
  7.   disc { <0,1,0>, <0,1,0>, 10, 8 texture { color green 1.0 } }
  8.   disc { <0,2,0>, <0,1,0>, 8, 6 rotate 20*z texture { color blue 1.0 } }
  9.   disc { <0,3,0>, <0,1,0>, 6, 4 translate <0.5> texture { color red 1.0 blue .5} }
  10.   disc { <0,4,0>, <0,1,0>, 4, 2 texture { color red 1.0 } }
  11. }
  12. light_source{
  13.   <-5, 7, 2> color rgb <1>
  14. }