// Exemplo de arquivo de descricao de cena para POV-ray // Last edited on 2000-09-21 09:50:30 by stolfi background{ color rgb < 1, 1, 1 > } light_source { < 50, 40, 0 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 50, 30, -15 > // sky <0,0,0> look_at < 25, 8, 25 > } #declare chao = box { < 19, 0, 15 >, < 31, 1, 35 > pigment {color rgb <1,1,1> } } #declare teto = box { < 19, 11, 23 >, < 31, 12, 35 > pigment {color rgb <1,1,1> } } #declare lado1 = box { < 20, 0, 15 >, < 19, 6, 35 > pigment {color rgb <1,1,1> } } #declare lado2 = box { < 20, 6, 23 >, < 19, 12, 35 > pigment {color rgb <1,1,1> } } #declare frentetras = box { < 20, 0, 15 >, < 32, 6, 16 > pigment {color rgb <1,1,1> } } #declare vigas = box { < 0, 0, 0 >, < 1, 10, 1 > pigment {color rgb <1,1,1> } } #declare rodas = cylinder { < 0, 0, 0 >, < 0, 3, 0 >, 3 pigment {color rgb <0,0,0> } } #declare motor = cylinder { < 0, 0, 0 >, < 0, 2, 0 >, 1 pigment {color rgb <0,0,0> } } #declare pa = box { < 0, 0, 0 >, < 1, 1, 25 > pigment {color rgb <0,0,1> } } //farol sphere {<21,2,15> 1 pigment {color rgb <1,0,0>} } //outro farol sphere {<29,2,15> 1 pigment {color rgb <1,0,0>} } object {chao} object {teto} object {lado1} object {lado1 translate <12,0,0> } object {lado2} object {lado2 translate <12,0,0> } object {frentetras} object {frentetras translate <0,0,19> } object {vigas rotate <45,0,0> translate <19,5,16> } object {vigas rotate <45,0,0> translate <31,5,16> } object {rodas rotate <0,0,90> translate <34,0,20> } object {rodas rotate <0,0,90> translate <34,0,30> } object {rodas rotate <0,0,90> translate <19,0,20> } object {rodas rotate <0,0,90> translate <19,0,30> } object {motor translate <25,12,30> } object {pa translate <25,14,30> } object {pa translate <25,14,5> } object {pa rotate <0,90,0> translate <25,14,30> } object {pa rotate <0,90,0> translate <0,14,30> }