// Last edited on 2003-03-19 18:13:42 by stolfi #include "colors.inc" background{White} camera { angle 15 location <4,8,-20> look_at <0,0,0> } light_source { <0, 0, -25> color White } light_source { <-10, -5, -25> color 0.5*White } #declare corpo_virus = blob { threshold .75 sphere { <0.00, -1.00, 0.00>, 3.00, 1 pigment {Blue} } sphere { <0.00, +1.00, 0.00>, 1.00, 1 pigment {Green} } finish { phong 1} } #declare orelha_esquerda = blob { threshold .5 cylinder { <-0.5, 1, 0>, <-1.0, 1.5, 0>, .25, 1} pigment {Green} finish { phong 1 } } #declare orelha_direita = blob { threshold .5 cylinder { <+0.5, 1, 0>, <+1.0, 1.5, 0>, .25, 1 pigment {Green} } finish { phong 1 } } union { object { corpo_virus } object { orelha_esquerda } object { orelha_direita } }