// MOON / Blue Spire '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 = 360; #declare Hmax = 120; #declare H = 0; #while (H < 0.25, 0.25, 0.25> rotate z*180/pi*atan(-2.4/25*(-H*0.5+Hmax/2*0.3-Hmax/2*0.3)) translate <0.3*pow(H/5,2), -H*0.5+Hmax/2*0.3, 0> rotate y*(360/Tmax*T-0.3*pow(H/5,2)) texture { pigment {color rgbt <0.7, 0.9, 1, 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 <-30, 60, -60> angle 40 look_at <5, 0, 0> } light_source { <10000, 3000, -28000> color rgb <0.3, 0.7, 1> }