// Fabio Negrello - exercicio 01 // ultima modificacao 29/09/00 background{ color rgb < 1, 1, 1 > } light_source { < 0.00, 0.00, 15.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 0.00, 4.00,15.00 > look_at < 0.00, 0.00, 0.00 > } #declare bola = sphere { < 0.00, 0.00, 0.00 >, 2.00 texture { pigment { color rgb <1, 0.00, 0.00 > } } } #declare cilindro = cylinder { < 0.00, 0.00, 0.00 >, < 0.00, 3.00, 0.00 >, 2.00 texture { pigment { color rgb < 0.00, 0.00, 1 > } } } #declare meucone = cone { <0, 3, 0>, 2.0 // Center and radius of one end <0, 5, 0>, 0.0 // Center and radius of other end open // Removes end caps texture { pigment { color rgb < 1, 0.00, 0.00 > } } } #declare caixa = box { <-4, -2, -4>, // Near lower left corner <4, -4, 4> // Far upper right corner texture { pigment { color rgb < 0.00, 0.00, 0.00 > } } } union { object { bola } object { cilindro } object { meucone } object { caixa } }