//Eduardo Hideki Tanaka RA: 970563 // Quarto Exercicio - MC930 background{ color rgb < 0.02, 0.00, 0.02 > } light_source { < -1.00, 4.00, -7.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < -4.00, 3.00, -10.00 > look_at < 6.00, 2.00, 4.00 > } #declare tinta_azul_claro = texture { pigment { color rgb < 0.00, 0.60, 0.85 > } normal { waves 1 scale .1 } finish { diffuse 0.9 specular 0.5 roughness 0.005 ambient 0.1 metallic } } #declare tinta_amarela = texture { pigment { color rgb < 1.00, 1.00, 0.10 > } normal { bumps 0.4 scale 0.1 } finish { phong 1 } } #declare titulo1 = text { ttf "timrom" "TANAKA" .2, .1 texture { tinta_azul_claro } } #declare titulo2 = text { ttf "timrom" "corp." .2, .1 texture { tinta_amarela } } union { object { titulo1 scale <2, 2, 2> rotate <0, sin(clock*pi/6)*pi/2, 0> translate <3.5*clock, 2*sin(clock*pi), 0> } object { titulo2 rotate <0, sin(clock*pi/6)*pi/2, 0> translate <3.5*clock+7, 1.5*sin(clock*pi), 0> } }