// MOON / Yellow Bowl '03.09 // By Tsutomu HIGO URL: http://www.asahi-net.or.jp/~nj2t-hg/ #version 3.5; global_settings { max_trace_level 5 assumed_gamma 2.2 } #declare Tmax = 240; #declare Hmax = 150; #declare H = 0.1; #while (H < 0.25, 0.25, 0.25> rotate z*(180/pi*atan(-1000/4/pow(H,1.4))) translate rotate y*(360/Tmax*T-H*H/9) texture { pigment {color rgbt <0.9, 1, 0.3, 0.7>} finish { ambient 0 diffuse 1 reflection 0.7 specular 0.8 phong 0.5 brilliance 1 } } no_shadow } #declare T = T+1; #end #declare H = H+1; #end background { color rgb <0, 0.1, 0.2> } camera { location <-20, 40, -30> angle 80 look_at <-15, 0, -10> } light_source { <-18000, 30000, -20000> color rgb <1, 0.7, 0.3> }