//Tiago Saad - 971717 //Rodocoptero background{ color rgb < 1.00, 1.00, 1.00 > } light_source { < 15.00, 15.00, 15.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 20.00, 15.00, 18.00 > look_at < 0.00, 0.00, 0.00 > } box { // caixa branca <3, 2, 2> <8, 5, 8> pigment {color rgb <1, 1, 1>} } cylinder { // helice <5.5, 9, 5>, <5.5,9.1,5>, 4.5 pigment {color rgb <0, 1, 1> alpha 0.9} } #declare banco = cylinder { <0, 0, 0>, <0, 1, 0>, 1.5 pigment {color rgb <0, 0, 0>} } object { banco translate <9.5, 2.5, 3.5> } object { banco translate <9.5, 2.5, 6.5> } #declare roda = torus{ 1, .25 pigment {color rgb <0,0,0>} rotate <90, 0, 0> } object { roda translate <5.5, 2.5, 1.5> } object { roda translate <5.5, 2.5, 8.5> } object { roda scale <0.5, 0.5, 1> translate <16, 2, 3.5> } object { roda scale <0.5, 0.5, 1> translate <16, 2, 6.5> } #declare haste = cylinder{ <0, -1, 0>, <0, 1, 0>, 0.5 pigment {color rgb <0.9, 0.9, 0.9>} } object { haste // centro da helice translate <5.5, 6, 5> } object { haste // centro da helice scale <0.2, 1, 0.2> translate <5.5, 8, 5> } cylinder { <16, 2, 4>, <16, 2, 6>, 0.2 pigment { color rgb <0.9, 0.9, 0.9>} } #declare eixo = cylinder { <-4.5, 2, 3.5>, <4.5, 2, 3.5>, 0.2 pigment { color rgb <0.9, 0.9, 0.9>} } object { eixo rotate <0, -20, 0> translate <13, 0, 0> } object { eixo rotate <0, 20, 0> translate < 10, 0, 3> }