// Last edited on 2003-05-30 01:12:03 by stolfi #include "colors.inc" #include "stones.inc" #include "textures.inc" camera { location 0.35*<0, -2.5, -25> look_at <0,-2.5,0> } background { color Black } light_source { 10*<0 , 10, -10 > 1.2*White } light_source { 10*<-10, 10,-20> 0.8*White} light_source { 10*<5, -5,-5> 0.5*White} #declare logotipo = text { ttf "timrom.ttf" "O Senhor dos Toroides" .15, 0 translate <-5,0,0> pigment{BrightGold} finish { ambient 0.1 diffuse 0.8 specular 0.5 roughness 0.005 reflection 0.1 } } #declare toroide = torus { 1, .25 rotate -90*x translate -5*y pigment { Gold } finish { ambient 0.1 diffuse 0.8 specular 0.5 roughness 0.005 reflection 0.1 } } #if (clock < 0.75) object {toroide rotate <0, 3*360*clock, 0>} #if (clock>=0.5) object {logotipo} #end #else #if (clock=0.75) object{logotipo} object {toroide rotate <0,60,15> translate <-1.5,-0.2,0>} #else object{logotipo} #end #end