// Trabalho 2 - 19/05/2001

background{ color rgb < 1.00, 1.00, 1.00 > }

light_source {
  < -20.00, 30.00, 50.00 >
   color  rgb < 1.00, 1.00, 1.00 >
} 

camera {
  location  < -5.00, 20.00, 10.00 >
  right     < -1.20,  0.00,  0.00 >
  up        <  0.00,  0.00,  0.90 >
  sky       <  0.00,  0.00,  1.00 >
  look_at   <  0.00,  0.00,  0.00 >
} 

#declare tinta_Azul = 
  texture {
    pigment { color rgb < 0.00, 0.00, 1.00 > }
//    finish { diffuse 1.5 specular 0.5 roughness 0.005 ambient 0.1 }
  }

#declare tinta_Vermelha = 
  texture {
    pigment { color rgb < 1.00, 0.00, 0.00 > }
//    finish { diffuse 1.5 specular 0.5 roughness 0.005 ambient 0.1 }
  }

#declare tinta_Verde = 
  texture {
    pigment { color rgb < 0.00, 1.00, 0.00 > }
//    finish { diffuse 0.5 specular 0.5 roughness 0.005 ambient 0.1 }
  }

  
blob {
   sphere { < 0.00, 0.00, 3.00>, 4, 4 texture { tinta_Verde } }
   sphere { < 0.00, 1.00,-1.00>, 9, 2 texture { tinta_Verde }}
}

   sphere { < 0.80, 2.90, 5.00>, 0.5 texture { tinta_Azul } }
   sphere { <-0.70, 3.00, 5.00>, 0.5 texture { tinta_Azul } }
   sphere { <-2.10, 2.00, 5.00>, 0.5 texture { tinta_Azul } }

   cone	{ < 2.20, 0.00, 5.00>, 0.5
          < 2.80, 0.00, 6.00>, 0.0 texture { tinta_Vermelha } }	

   cone	{ < -2.20, 0.00, 5.20>, 0.5
          < -2.80, 0.00, 6.20>, 0.0 texture { tinta_Vermelha } }	

blob {
   sphere { <-0.30, 4.00, 3.50>, 0.7, 3 texture { tinta_Vermelha } }
   sphere { <-0.90, 4.00, 3.50>, 0.7, 3 texture { tinta_Vermelha } }
}