Modifié le 15 Mai 2008 à 23 h 08

torsh.pov
//@AUTEUR: Maxime Chupin
//@DATE: 15 mai 2008
camera{
  location <2,2,2>
  look_at <0,0,0>
}
light_source{
  <20,50,-50>, color rgb<1,1,1>
}
background{
  color rgb<1,1,1>
}
//*intersection d'une sphere et d'un tor
intersection{
  sphere{
    <0,0,0>,1
    pigment{
       color rgb <1,0,0>
    }
  }
  torus{
   1, 0.5
   pigment{
      color rgb <0,1,0>
   } 
  }
}