// Exemplo de arquivo de descricao de cena para POV-ray // Last edited on 2003-03-11 18:00:00 by evandro #include "colors.inc" background{White} camera { angle 15 location <0,0,30> look_at <0,0,0> } light_source { <0, 0, 10> color White } #declare corpo_virus = blob { threshold .75 sphere { <0.00, -1.00, 0.00>, 3, 1 pigment {Blue} } sphere { <0.00, +1.00, 0.00>, 1, 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} } sphere { <-1.20, 1.30, 0.00>, .40, 1 pigment {Blue} } sphere { <-0.80, 1.70, 0.00>, .40, 1 pigment {Blue} } finish { phong 1 } } #declare orelha_direita = blob { threshold .5 cylinder { <+0.5, 1, 0>, <+1.0, 1.5, 0>, .25, 1 pigment {Green} } sphere { <+1.20, 1.30, 0.00>, .40, 1 pigment {Blue} } sphere { <+0.80, 1.70, 0.00>, .40, 1 pigment {Blue} } finish { phong 1 } } #declare perna_01 = blob { threshold .5 cylinder { <0, -1, 0>, <0, -2, 5>, .5, 1 pigment {Blue} } sphere { <0, -2, 5>, .7, 1 pigment {Red} } finish { phong 1 } } #declare perna_02 = blob { threshold .5 cylinder { <0, -1, 0>, <-3, -2, -4>, .5, 1 pigment {Blue} } sphere { <-3, -2, -4>, .7, 1 pigment {Red} } finish { phong 1 } } #declare perna_03 = blob { threshold .5 cylinder { <0, -1, 0>, <3, -2, -4>, .5, 1 pigment {Blue} } sphere { <3, -2, -4>, .7, 1 pigment {Red} } finish { phong 1 } } union { object { corpo_virus } object { orelha_esquerda } object { orelha_direita } object { perna_01 } object { perna_02 } object { perna_03 } }