// LAY / Lost Dimensional Laying '99.09 // By Tsutomu HIGO E-mail: nj2t-hg@asahi-net.or.jp #version 3.1; global_settings { max_trace_level 30 assumed_gamma 2.2 } light_source {<0, 0, -2> color <1,1,1>} camera { location <-0.8,-0.8,-2> angle 150 look_at <0, 0, 0> } union { #declare I=0; #while (I<50) box { <-2, -2, 5-0.2*I> <2, 2, 5.1-0.2*I> pigment {leopard color_map{ [0 color rgbt <0,0,0,1>] [0.000001 color rgbt <8,0,15,0>] [0.0001 color rgbt <0.5,0,1,0.8>] [0.1 color rgbt <0,0,0.1,1>] [1 color rgbt <15,5,5,0.8>] } turbulence 0.3 translate <-0.6,0,70> scale 0.4 } } #declare I=I+1; #end }