// MOON / Green Bud '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(16*sqrt(Hmax*Hmax-H*H+0.1)/4/H)) translate rotate y*(360/Tmax*T-pow(H,1.2)) texture { pigment {color rgbt <0, 1, 0, 0.8>} 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, 100, -100> angle 60 look_at <0, -25, -2> } light_source { <18000, 5000, 10000> color rgb <1, 1, 1> }