// Exemplo de arquivo de descricao de cena para POV-ray // Last edited on 2000-10-19 12:40:05 by Sergio Zaccarelli - Ra973918 background{ color rgb < 0.00, 0.03, 0.15 > } light_source { < 4.00, 10.00, 50.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 1.5, 0, 2.5 > look_at < -.5, 0, 0.00 > } #declare folha = cone { <0, 0, 0>, 0 // Center and radius of one end <1, 1, 1>, .15 // Center and radius of other end rotate <0,0,120> pigment{color rgb <0,1,0>} } difference{ union{ blob { threshold 1 sphere { <.5,0,0>, 1.2, 1 scale <2,2,2> pigment {color rgb <.9, 1, 0>} } sphere { <-.5,0,0>,1, 1 scale <2,2,2> pigment {color rgb <.9, 1, 0>} } finish { phong 1 } } box { <-.8, 0.2, -.4>, // Near lower left corner < 0.3, -0.1, 0.5> // Far upper right corner pigment {color rgb <1,1,1>} } } box { <-.1, 0.3, .2>, // Near lower left corner < 0.20, -0.45, 0.7> // Far upper right corner } pigment {color rgb <1,1,1>} } object {folha} object {folha rotate<0,0,5>} object{folha rotate<0,0,10>} object{folha rotate<0,0,15>} object{folha rotate<0,0,20>} object{folha rotate<0,0,25>}