// Last edited on 2007-07-24 00:40:46 by stolfi // Processed by remove-cam-lights #declare tinta_amarela = texture { pigment { color rgb <1,0.7,0> } finish { diffuse 0.3 specular 0.3 roughness 0.005 ambient 0.2 reflection 0.2} } #declare tinta_verde = texture { pigment { color rgb <0,1,0> } finish { diffuse 0.3 specular 0.3 roughness 0.005 ambient 0.2 reflection 0.2} } #declare tinta_prata = texture { pigment { color rgb <0.6, 0.6, 0.6> } finish { diffuse 0.3 specular 0.3 roughness 0.005 ambient 0.2 reflection 0.2} } #declare tinta_azul = texture { pigment { color rgb <0, 0, 1> } finish { diffuse 0.3 specular 0.3 roughness 0.005 ambient 0.2 reflection 0.2} } #declare tinta_vermelha = texture { pigment { color rgb <1, 0, 0> } finish { diffuse 0.3 specular 0.3 roughness 0.005 ambient 0.2 reflection 0.2} } #declare tinta_branca = texture { pigment { color rgb <1, 1, 1> } finish { diffuse 0.3 specular 0.3 roughness 0.005 ambient 0.2 reflection 0.2} } #declare tinta_preta = texture { pigment { color rgb <0, 0, 0> } finish { diffuse 0.3 specular 0.3 roughness 0.005 ambient 0.2 reflection 0.2} } plane{ z,-60 translate - 5*z texture { pigment { checker color rgb <0.2,0.2,0.2>, color rgb <0.9,0.9,0.9> } } } #declare pedestal = box { < -10.00, -40.00, -49.00 >, < 10.00, 40.00, -60.00 > texture { tinta_azul } } #declare texto = text{ ttf "arial.ttf" "Quem pode, pode!" 0.3 0 texture {tinta_branca} scale <4,4,4> translate < -11, 0, 100 > } object {pedestal} object {texto rotate 90*y rotate 90*x } blob{ threshold 0.5 sphere { <0,0,4>, 10, 1 texture {tinta_branca} scale <1,2,5> } sphere { <0,5,-5>, 6, 1 texture {tinta_amarela} scale <1,1,6> rotate 10*z } sphere { <0,-5,-5>, 6, 1 texture {tinta_amarela} scale <1,1,6> } sphere { <0,0,55>, 10, 1 texture {tinta_verde} } sphere { <0,5,37>, 5, 1 texture {tinta_verde} scale <1,5,1> } sphere { <0,-5,37>, 5, 1 texture {tinta_verde} scale <1,5,1> } } // Original camera parameters: // #local cam_ctr = <0,0,0> // #local cam_vec = <180.00,10.00,50.00> // #local cam_sky = z #include "camlight.inc" camlight(<0,0,0>,<10,10,10>,150.0,z,1.0)