// Trabalho de laboratorio numero 1 // Monumento ao Parametro Desconhecido // MP004 -1s/2001 // Aluna: Simone da Silva Amorim background{ color rgb < 0.00, 1.00, 1.00 > } light_source { < 8.00, 2.00, 4.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 8.00, 2.00, 2.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, 0.00, 0.00 > } #declare tinta_chapeu = texture { pigment { color rgb < 0.00, 1.00, 0.00 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_braco = texture { pigment { color rgb < 1.00, 1.00, 0.00 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_bola = texture { pigment { color rgb < 1.00, 0.00, 0.00 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_caixa = texture { pigment { color rgb < 0.00, 0.00, 1.00 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare bola= sphere { < 0.00, .00, .00 >, 1.00 texture { tinta_bola } } #declare caixa = box { < 1,1,-1>, <-2,-2,-3> texture { tinta_caixa } } #declare chapeu = cone { <0, 0, 3>, 0.0 <0.0, 0.0, 1.0>, 1.0 texture { tinta_chapeu } } #declare braco1 = cylinder { < -1.00, -1.00, 0.00 >, < -1.00, 2.00, -4.00 >, 0.5 texture { tinta_braco } } #declare braco2 = cylinder { < -1.00, -2.00, -2.00 >, < -1.00, -4.00, -4.00 >, 0.5 texture { tinta_braco } } // Aqui está a cena, finalmente: object { bola} object {caixa} object {chapeu} object {braco1} object {braco2}