// GLOW / WAVE of LIGHT '01.07 // By Tsutomu HIGO E-mail: nj2t-hg@asahi-net.or.jp #version 3.1; global_settings { max_trace_level 300 assumed_gamma 2.2 } light_source {<0, 0.1, 0> color <1,1,2>} camera { location <0, 0, -100> angle 1.2 look_at <0.3, 0.2, 0> } #declare R1 = seed(70); union { #declare I0=15; #declare I=I0; #while (I>-8) sphere { <0.1*I,0,0.1*I> 0.5 pigment { color rgbt <1,1,1,1> } finish { reflection 0 phong 0.5 } scale <1,2,1> } #declare I=I-1; #end sphere { <0,0,-302> 305 pigment { granite color_map{ [0 color rgbt <2,0,0,0.5>] [1 color rgbt <0,0,2,1>] } scale 80 turbulence 0.5 } normal { marble 1 scale 2 } scale <0.05,0.04,2> rotate z*25 rotate y*-1 } no_shadow }