// José Renato Paulon #include "colors.inc" background{White} camera { angle 15 location <4,2,-20> look_at <1,0,0> } light_source {<10,20,-10> color White} blob{ threshold .65 //primeira parte (cabeça) sphere {<-.5,.6,0>, .4, 1 pigment {Green} } //esfera 1 de cima sphere {<-.5,.1,0>, .9, 1.4 pigment {Yellow}} //esfera 2 de cima sphere {<-.5,-.8,0>, .9, 1.4 pigment {Yellow}}//esfera 2 de baixo sphere {<-.5,-1.3,0>, .4, 1 pigment {Green} } //esfera 1 de baixo // segunda parte (corpo) sphere {<.5,-.35,.4>, 1, 3 pigment {Blue} } sphere {<1.8,-.35,.4>, 1.4, 1.5 pigment {Black} } sphere {<1.6,-1.2,-.3>,.8, 2 pigment {Red} } finish {phong 1} }