// REFRECT / a step to the heaven '05.04 // By Tsutomu HIGO URL: http://www.asahi-net.or.jp/~nj2t-hg/ #version 3.6; global_settings { max_trace_level 20 assumed_gamma 2.2 } camera { location <-3, 3, -7> angle 117 look_at <0, 3.6, -3> } union { light_source { <0, 10, -20> color rgb <1, 2, 1> } union { plane { x, -5 } plane { -x, -5 } texture { pigment { color rgb <0, 0, 0> } finish { reflection 0.9 ambient 0 phong 0 brilliance 0 diffuse 0 } } } merge { #declare I = 0; #while (I < 7) box { <-1.4142/2+0.1, -0.1, -3> <1.4142/2+0.1, 0.1, 3> rotate z*45 translate x*2*(I-3.25) } box { <-1.4142/2+0.1, -0.1, -3> <1.4142/2+0.1, 0.1, 3> rotate z*-45 translate x*2*(I-2.75) } #declare I = I+1; #end texture { pigment { color rgbt <0.95, 0.9, 1, 0.8> } finish { reflection 0.5 ambient 0.3 phong 1 diffuse 0.5 brilliance 1 } } no_shadow } rotate z*45 }