// Exercicio 3 // Fabio Abreu Hashimoto RA 970640 //#include "glass.inc" #include "colors.inc" //#include "metals.inc" #include "textures.inc" background{ color Black} light_source { < 10.00, 10.00, 10.00 > color rgb < 1.00, 1.00, 1.00 > } camera { location < 10.00, 10.00, 10.00 > look_at < 0.00, 0.00, 0.00 > } #declare fruta= blob { threshold .05 sphere { <0,1.5,0>, 1.7, 1 pigment {Green} scale <1,1,2.7>} sphere { <0,-1.5,0>, 1.7, 1 pigment {Green} scale <1,1,2.7>} sphere { <1.5,0,0>, 1.7, 1 pigment {Green} scale <1,1,2.7>} sphere { <-1.5,0,0>, 1.7, 1 pigment {Green} scale <1,1,2.7>} cylinder { <0,0,2>, <0,0,-2>, 2.5, 1 pigment {Green}} finish {phong 1} } object {fruta}