// MOON / White Whirl '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 = 60; #declare Hmax = 240; #declare H = 0.1; #while (H < 0.25, 0.25, 0.25> rotate z*(90/Hmax*H) rotate y*(90/Tmax*T) translate rotate y*(360/Tmax*T-500/(H/20+1)) texture { pigment {color rgbt <1, 0.9, 0.7, 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 <10, 60, 150> angle 20 look_at <0, -15, 2> } light_source { <-6000, 14000, 2000> color rgb <1, 0.9, 0.7> }