// Exercicio 2 // Last edited on 2001-05-19 19:38:19 by stolfi #include "colors.inc" background{ color rgb < 1.00, 1.00, 0.50 > } camera { location < 8.00, 8.00, 8.00 > right < -1.20, 0.00, 0.00 > up < 0.00, 0.00, 0.80 > sky < 0.00, 0.00, 0.80 > look_at < 0.00, 0.00, 4.50 > } light_source { <10, 20, -10> color White } blob { threshold 0.5 sphere { <0,0,0>, 3 ,1 scale <2,2,1> translate <0,0,2> pigment {Blue} } sphere { <0,0,4>, 2 , 1 pigment {Pink} } sphere { <0,0,0>, 2 , 1 scale <2,2,1> translate <0,0,6> pigment {Blue} } sphere { <0,0,0>, 1 , 1 scale <3,3,1> translate <0,0,8> pigment {Pink} } sphere { <0,0,8.5>, 0.5 , 1 pigment {Blue} } sphere { <0,-2,5>, 1.5 , 1 scale <3,3,1> pigment {Pink} } sphere { <0,1.3,6.2>, 0.8 , 1 scale <2.95,2.95,1> pigment {Blue} } sphere { <0,-12,3.7>, 1 , -10 scale <1,1,1> pigment {Black} finish { phong 1 } } }