// EXERCICIO 4 - Logotipos voadores // By Daniel Salles de Araujo 26 Out 2000 //#include "glass.inc" #include "colors.inc" //#include "metals.inc" #include "textures.inc" background{ color Black} light_source { < 0.00, 2.00, -3.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 0.00, 1.00, (clock*10)-8 > look_at < 0.00, 1.00*clock, 0.00 > } #declare azul= texture { pigment { Blue } finish { phong 1 metallic } } #declare inc= text { ttf "arial.ttf" "Inc" 0.5, 0 pigment {Blue} } #declare d= difference { sphere { <-2.5, 2.5, 0> , 1.0 texture { azul }} box { <-3.0, 1.2, 2> , <-3.6, 3.6, -2> } } #declare ms= difference { sphere { <0,0,0> , 0.6 texture { azul }} box { <0.3, -0.6, 0.6>, <0.9, 0.6, -0.6> } } #declare a= cone { <0, -1, 0>, 0.6 <0, 1, 0>, 0 texture { azul } } object { d } object { ms translate < 0.1, 3.0, 0 > } object { ms rotate < 0, 0, 180 > translate < -0.1, 1.8, 0> } object { inc } object { a translate <1.8, 2.4 , 0 > }