// Last edited on 2003-12-13 21:06:18 by stolfi // ====================================================================== #declare ctr = < 0.00, 0.00, clock >; #declare camDir = < 0.00, 10.00+3*clock, 0 >; camera { location ctr + 1.00*camDir right 0.75*x up 0.75*y sky z look_at ctr } light_source { 10 * < +0.0, +20.0, +10.0 > // Posição da lâmpada. color rgb 1.3 * < 1.00, 1.00, 1.00 > // Intensidade e cor da luz. } light_source { 10 * < +0.0, +15.0, +15.0 > // Posição da lâmpada. color rgb 0.6 * < 1.00, 1.00, 1.00 > // Intensidade e cor da luz. } sky_sphere { pigment { image_map { "../txmaps/jwm8.png" map_type 1 } } } #declare txtx = texture { pigment { color rgb <0.3,1.0,0.1> } finish { diffuse 0 ambient 1 } } //objetos: #declare texto = text { ttf "timrom.ttf" "ALCA" 0.05, 0 texture { txtx } rotate 90*x translate <-0.9,0,5.1> } #declare texto2 = text { ttf "timrom.ttf" "espetaculo do crescimento" 0.05, 0 texture { txtx } scale <1.2,1.2,1.2> rotate 90*x translate <-6.5,0,4.1> } #declare planeta = blob { threshold 0.5 sphere { <0,0,0>, 6, 1 pigment { image_map { "../txmaps/earth-land.png" map_type 1 } } rotate 90*x rotate 190*z } sphere { <-0.6,0.5+(1.7*clock),2.2>, 1.0, 1 pigment { color rgb <0.3,0.3,0.9> } } sphere { <1.3,1.5+(1.4*clock),-0.7>, 1.0,-1 pigment { color rgb <0.3,0.3,0.9> } } finish { phong 1 } } union { object { planeta } union{ object { texto } object { texto2 } translate < 0, -7, +2.5 > } }