// Last edited on 2003-03-19 17:31:46 by stolfi
// Ivan Francisco Coutinho Costa
// RA 001833
// MC930 - TP 2
// 11/03/2003


#include "colors.inc"

background {White}

camera {
    location <0,.8,-2>
    look_at <0,0,0>
 }

light_source { <10, 20, -10> color White }
light_source { <-7, 25,  12> color White }

plane {
  y, -3
  pigment { checker color Grey color Black }
}

blob {
    threshold .65

    sphere { <0.0, 0.0, 0.0>, .8, 1 pigment {Flesh} } // corpo do virus
    sphere { <-0.5, 0, -0.5>, .2, 1 pigment {Yellow} } 
    sphere { <0.5, 0, -0.5>, .2, 1 pigment {Green} }  
    sphere { <-0.5, 0, 0.5>, .2, 1 pigment { Blue} }
    sphere { <0.5, 0, 0.5>, .2, 1 pigment {Red} }
    sphere { <0.0, 0.0, -0.5>, .2, -1 }             // boca do virus
    cylinder { <0.0, 0.0, 0.0>, <-0.5, 0, -0.5>, .1, .5}   // bracos
    cylinder { <0.0, 0.0, 0.0>, <0.5, 0, -0.5>, .1, .5}		
    cylinder { <0.0, 0.0, 0.0>, <-0.5, 0, 0.5>, .1, .5}	
    cylinder { <0.0, 0.0, 0.0>, <0.5, 0, 0.5>, .1, .5}
    
    finish { phong 1 }
  }