Modifié le 15 Mai 2008 à 23 h 00

torsh-alt.pov
//@AUTEUR: Maxime Chupin et Arnaud Schmittbuhl
//@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 tore
intersection {
    torus{ 1, 0.5 pigment { color rgb <0,1,0> } }
    sphere{ <0,0,0>,1 pigment { color rgb <1,0,0> } }
}
  
box { <-1, -1, 0>, <1, 1, 0.01>
   pigment { color rgbf <0.5,0.8,1, 0.8> }
}