// 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 { < 12.00, 12.00, 12.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 12.00, 12.00, 12.00 > look_at < 4.5, 4.00, 4.50 > } //pigment { color rgb < 1.00, 0.00, 0.00 > } //finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } #declare flor = cone { <4.5, 7, 4.5>, 0.5 // Center and radius of one end <4.5, 8, 4.5>, 0 // Center and radius of other end pigment { color rgb < 0.00, 0.00, 1.00 > } } #declare vaso = box { <2, 1, 3>, // Near lower left corner <7, 5, 6> // Far upper right corner pigment { color rgb < 0.00, 0.00, 0.00 > } } #declare caule = cylinder { < 4.50, 1.00, 4.50 >, < 4.50, 7.00, 4.50 >, 0.50 pigment { color rgb < 1.00, 0.00, 0.00 > } } // Aqui está a cena, finalmente: object { vaso } object { caule } object { flor }