#include "colors.inc" global_settings {assumed_gamma 1.8} camera { location <0, 100, 0> right 1.1*x look_at <0, 0, 0> angle .65 } #declare Fil = .6; #declare Mult = 2; light_source{<0, 20000, 0> White} box {<-.5, -.5, 0> <.5, .5, 0> texture {pigment { image_map {gif "Green.gif" interpolate 0 once filter all Fil }translate <-0.5, -0.5, 0.0> } finish { ambient 0 diffuse 4 * Mult } } texture {pigment { image_map {gif "Red.gif" interpolate 0 once filter all Fil }translate <-0.5, -0.5, 0.0> } finish { ambient 0 diffuse 2 * Mult } } texture {pigment { image_map {gif "Blue.gif" interpolate 0 once filter all Fil }translate <-0.5, -0.5, 0.0> } finish { ambient 0 diffuse 1 * Mult } } rotate 90*x }