// Last edited on 2007-07-24 00:44:02 by stolfi // Processed by remove-cam-lights background{ color rgb < 0.75, 0.80, 0.85 > } #declare raio = 2.000; #declare tinta_A = texture { pigment { checker color rgb < 0.10, 0.80, 1.00 > color rgb <1.0,1.0,1.0> } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_B = texture { pigment { color rgb < 1.00, 0.80, 0.10 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_C = texture { pigment { color rgb < 0.40, 0.30, 0.80 >} finish { diffuse 0.3 specular 0.3 roughness 0.05 ambient 0.2 reflection 0.2 } } #declare tinta_D = texture { pigment { color rgb < 0.10, 0.10, 1.00 > } finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 } } #declare tinta_E = texture { pigment { color rgb < 1.00, 0.70, 0.00> } finish { diffuse 0.3 specular 0.3 roughness 0.05 ambient 0.2 reflection 0.2} } object {plane{z,-3 texture { pigment{checker color rgb <0.5, 0.5, 0.5>, color rgb <0.2, 0.2, 0.2>} } } } #declare base = box{ < 0.00, 0.00, 0.00 >, < 7.00, 7.00, 1.5> texture { tinta_E } translate<-3,-3.5,-3> } #declare aula_8 = blob{ threshold 0.5 sphere{<0,0,-0.5>,3,0.8 texture{tinta_B}} sphere{<0,0,4>,4,1 texture{tinta_A}} sphere{<0,0,7.5>,2,3 texture{tinta_C}} sphere{<0,3.2,4>,1.5,1 texture{tinta_D} rotate<0,20,0>} sphere{<0,-3.2,4>,1.5,1 texture{tinta_D} rotate<0,20,0>} } #declare texto = text {ttf "arial.ttf" "GENERICO" 1,0 rotate<90,0,90> translate<3.5,-2.5,-2.5> texture {pigment { color rgb < 1.00, 0.70, 0.00>} } } union{ object{aula_8} object{base} } object{texto} // Original camera parameters: // #local cam_ctr = <0,0,0> // #local cam_vec = <15.00,4.00,13.00> // #local cam_sky = z #include "camlight.inc" camlight(<0,0,3>,<10,10,10>,20.0,z,1.0)