// Diego Alves Nascimento RA042954 // Last edited on 02/09/210 // TP04 MO603B // ====================================================================== // CORES E TEXTURAS background{ color rgb < 0.75, 0.80, 0.85 > } #include "eixos.inc" #include "textures.inc" union{ //Centro: object{ eixos(3.00) } cylinder{<0, 0, 0> <0, 0, .5>, 2 texture{Red_Marble} } text{ttf "arial.ttf" "Texto 1" .2, 0.0 texture{Aluminum} rotate <90 0 90> translate <-0.1, -1.2, 0.5,>}//translate<1 0 0>} //Parte de Trás: text{ttf "arial.ttf" "Museu da Lingua" .2, 0.0 texture{Cork} rotate <90 0 90> translate <-2, -3.8, 5,>}//translate<1 0 0>} cylinder{<0, 0, 0> <0, 0, 5>, 0.5 texture{White_Marble} translate <-2, -3.5, 0>} cylinder{<0, 0, 0> <0, 0, 5>, 0.5 texture{White_Marble} translate <-2, 3.5, 0>} //Parte da Frente Esq: text{ttf "arial.ttf" "Bem" .2, 0.0 pigment{ rgb<1 0 0>} scale 0.5 rotate <90 0 90> rotate 30*x translate <2.7, -2.5, 2.5> } box{<0, 0, 0> <0.5, 0.5, 2.5> texture{EMBWood1} translate <2.5, -2.7, 0>} box{<0, 0, 0> <0.9, 0.9, -0.5> texture{EMBWood1} translate <2.3, -2.9, 2.5>} //Parte da Frente Dir: text{ttf "arial.ttf" "Vindo" .2, 0.0 pigment{ rgb<1 0 0>} scale 0.5 rotate <90 0 90> rotate -30*x translate <2.7, 2, 3.09> } box{<0, 0, 0> <0.5, 0.5, 2.5> texture{EMBWood1} translate <2.5, 2.7, 0>} box{<0, 0, 0> <0.9, 0.9, -0.5> texture{EMBWood1} translate <2.3, 2.5, 2.5>} } #include "camlight.inc" #declare centro_cena = < 0.00, 0.00, 1.00 >; #declare raio_cena = 7.0; #declare dir_camera = < 20.00, 0.00, 4.00 >; #declare dist_camera = 16.0; #declare intens_luz = 1.00; camlight(centro_cena, raio_cena, dir_camera, dist_camera , z, intens_luz)