// Trabalho 3 - 26/05/2001 // Last edited on 2001-05-27 12:23:23 by stolfi background{ color rgb < 0.00, 0.00, 1.00 > } light_source { < -20.00, 30.00, 50.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < -12.00, 15.00, 6.00 > right < -1.20, 0.00, 0.00 > up < 0.00, 0.00, 0.90 > sky < 0.00, 0.00, 1.00 > look_at < 2.00, 4.00, 1.50 > } #declare tinta_Branca = texture { pigment { color rgb < 1.00, 1.00, 1.00 > } finish { diffuse 1.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_Vermelha = texture { pigment { color rgb < 1.00, 0.00, 0.00 > } finish { diffuse 1.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_Amarela = texture { pigment { color rgb < 1.00, 1.00, 0.00 > } finish { diffuse 1.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_Verde = texture { pigment { color rgb < 0.00, 1.00, 0.00 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } //blob { // sphere { < 0.00, 0.00, 3.00>, 4, 4 texture { tinta_Verde } } // sphere { < 0.00, 1.00,-1.00>, 9, 2 texture { tinta_Verde }} //} union { // Corpo cone { < 5.20, 4.00, 2.00>, 3.0 < -2.80, 4.00, 3.00>, 1.5 texture { tinta_Amarela } } cylinder { < 5.00, 4.00, 4.00>, < 5.00, 4.00, 8.00>, 0.4 texture { tinta_Amarela } } // Remo cylinder { < 3.20, 2.50, -1.00>, < 1.80, 2.50, 2.00>, 0.3 texture { tinta_Vermelha } } cylinder { < 1.70, 5.50, -1.00>, < 0.30, 5.50, 2.00>, 0.3 texture { tinta_Vermelha } } // Hélice cylinder { < -3.00, 4.00, 6.00>, < -3.00, 4.00, 3.20>, 0.3 texture { tinta_Verde } } cylinder { < -3.00, 4.00, 2.80>, < -3.00, 4.00, 0.00>, 0.3 texture { tinta_Verde } } // Asa cylinder { < 4.20, 8.00, 0.00>, < -0.80, 5.30, 3.60>, 0.6 texture { tinta_Branca } } cylinder { < 4.20, -0.20, 0.00>, < -0.80, 2.50, 3.60>, 0.6 texture { tinta_Branca } } }