// MC930 - Exemplo de main.pov para o trabalho final // Last edited on 2000-12-14 09:07:40 by mc726 // Alan Roberto Romaniuc 961829 // MONUMENTO: Biblioteca Municipal de Campinas #include "colors.inc" #include "textures.inc" background{ color Black } light_source { < 0.00, 0, -4.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 0.00, 1.5, -4.0 > look_at < 0.00, 1.5 0, > } #declare janelaQuadro = box { < 0, 0, 0> < 0.9, 3, 0.05 > pigment { color Silver } } #declare janelaB1 = box { < 0.1, 0.1, 0.01> < 0.8, 0.5, 0.04 > pigment { color Blue } } #declare CjanelaB1 = box { < 0.1, 0.1, 1> < 0.8, 0.5, -1> pigment { color Silver } } #declare janelaB2 = box { < 0.1, 0.6, 0.01> < 0.8, 1.15, 0.04 > pigment { rgbt <0.5 0.5 0.5 0.9> } } #declare CjanelaB2 = box { < 0.1, 0.6, 1> < 0.8, 1.15, -1 > pigment { color Silver } } #declare janelaB3 = box { < 0.1, 1.25, 0.01> < 0.8, 1.80, 0.04 > pigment { rgbt <0.5 0.5 0.5 0.9> } } #declare CjanelaB3 = box { < 0.1, 1.25, 1> < 0.8, 1.80, -1 > pigment { color Silver } } #declare janelaB4 = box { < 0.1, 1.9, 0.01> < 0.8, 2.3, 0.04 > pigment { color Gray } } #declare CjanelaB4 = box { < 0.1, 1.9, 1> < 0.8, 2.3, -1 > pigment { color Silver } } #declare quadroCortado = difference { object { janelaQuadro } object { CjanelaB1 } object { CjanelaB2 } object { CjanelaB3 } object { CjanelaB4 } } #declare FrenteJanela = union { object { quadroCortado } object { janelaB1 } object { janelaB2 } object { janelaB3 } object { janelaB4 } } object { FrenteJanela }