// RINGS1 / lpring13 '06.09 // by Tsutomu HIGO URL:http://www.asahi-net.or.jp/~nj2t-hg/ #version 3.6; global_settings { max_trace_level 9 assumed_gamma 2.2 } camera { location <-40, 50, -220> look_at <-75, 10, 0> angle 100 } light_source {<50, 60, -750> color rgb <0.8, 0.8, 1>} union { #declare Imax=360; #declare I=Imax; #while (I>0) disc { <0, 0, 0> z, 100, 99 rotate y*(-360/Imax*I-90) translate x*-150 rotate y*-360/Imax*I translate <150*sin(-I*pi/Imax), 0, 0> } #declare I=I-1; #end texture { pigment {color rgbt <1, 1, 1, 0.9999>} finish { ambient 0.3 diffuse 1 reflection 1 specular 0.8 phong 0.5 brilliance 1 } } no_shadow } background {color rgb <0.1, 0.2, 0.3>}