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

  1. // torus testfile, CSG testfile
  2.  
  3. camera { 
  4.   location <1, 0, -4>
  5.   look_at <0, 0, 0>
  6.   fov 40
  7. }
  8.  
  9. object {
  10.   light_source { <10, 10, -20> color red 1.0 blue 1.0 green 1.0 }
  11. }
  12.  
  13. #declare ShinyBlue  =  texture {
  14.   ambient color blue 0.2
  15.   diffuse color blue 0.7 red 0.2 green 0.2
  16.   specular color rgb <0.4, 0.4, 0.4>
  17.   roughness 0.1
  18. }
  19.  
  20. object {
  21.   intersection {    // macaroni :)
  22.     torus { 1.0, 0.5 }
  23.     torus { 1.0, 0.25 inverse }
  24.     plane { <1, 0, 0>, 0 }
  25.    rotate 90*x
  26.   }  
  27.   texture { ShinyBlue }
  28.   rotate <0, 45, 0>
  29. }
  30.