// ====================================================================== // CÂMERA camera { location < 0.00, 10.00+(3*clock), clock > // Posição do observador. right 1*x // Largura RELATIVA da imagem. up 0.75*y // Altura RELATIVA da imagem. sky z // Qual direção é "para cima"? look_at < 0.00, 0.00, clock > // Para onde a câmera está apontando. } // Nota: os parâmetros "right" e "up" devem ter a mesma proporção // que os parâmetros ${WIDTH} e ${HEIGHT} no Makefile. // ====================================================================== // FONTES DE LUZ 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. } // ====================================================================== // DESCRIÇÃO DA CENA //fundo: sky_sphere { pigment { image_map { "jwn.png" map_type 1 } } } //objetos: #declare texto = text { ttf "timrom.ttf" "ALCA" 0.8, 0 pigment { color rgb <0.1,0.8,0.1> } rotate 90*x translate <-0.9,0,5.1> } #declare texto2 = text { ttf "timrom.ttf" "espetaculo do crescimento" 0.8, 0 pigment { color rgb <0.1,0.8,0.1> } 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 { "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 } } // ======================================================================== // CENA union { object { planeta } object { texto } object { texto2 } }