// Trabalho 6 - 23/06/2001 // Last edited on 2001-07-30 20:25:20 by stolfi #include "colors.inc" background{ color rgb < 1.00, 1.00, 1.00 > } light_source { < -10.00, 30.00, 30.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location 1.1*< 0.00, 20.00, 10.00 > right < -1.20, 0.00, 0.00 > up < 0.00, 0.00, 0.90 > sky < 0.00, 0.00, 1.00 > look_at < 0.00, 1.00 * clock, 0.00 > } #declare tinta_Ouro = texture { pigment { BrightGold } finish { ambient 0.1 diffuse 0.4 reflection 0.25 specular 1.0 metallic } } #if (clock >= 0.50) plane { <0.0, 0.0, -5.0>, 4.0 pigment{checker color White, color Gray} } #else plane { <0.0, 0.0, -5.0>, 4.0 pigment{checker color Gray, color Yellow} } #end cone { < -1.50, 4.20, 4.00>, 3.0 < -1.50, 4.20, -3.50>, 1.5 texture { tinta_Ouro } } torus { 3.5, 1.0 rotate x*-90 translate x*-1.5 translate y*4.0 translate z * - 3.0 * (1 - clock * 2.1) texture { tinta_Ouro } } #declare povvy = text { ttf "arial.ttf" "POVVY Super-Vitaminado" 0.05, 0 texture { pigment { color rgb < 0.00, 0.00, 1 > } } rotate x*90 rotate z*-180 translate < 5.80, 9.50 * (1 - clock), 8.00> } #declare mnc = text { ttf "timrom.ttf" "MacNabisCoca" 0.1, 0 texture { pigment { color rgb < 0.00, 1.00, 0.00 > } } rotate x*90 rotate z*-180 translate < 2.50, 12.50, 1.00> } #declare bola = sphere { < 4.50, 0.20, 2.90 > 2 // rotate <0,180+180*clock,0> translate < 3, 3, sin(radians(clock*180))*3+2> } object{povvy} object{mnc} object{bola}