// TIME / Recurring '05.02 // by Tsutomu HIGO URL: http://www.asahi-net.or.jp/~nj2t-hg/ #version 3.6; global_settings { max_trace_level 3 assumed_gamma 2.2 } camera { location <0, -30, -0.5> look_at <-1, -29.85, 0> angle 100 } #declare Intensity = 8; light_source { <-600, 100, 600> color rgb <1, 1, 1> * Intensity spotlight point_at <0, 0, 0> radius 20 falloff 50 tightness 5 media_attenuation on } #declare PREC = 1000000; julia_fractal { <-0.603, -0.6, -0.8, 0.4> quaternion cube max_iteration 11 precision PREC texture { pigment {color rgb <1, 0.8, 0>} finish { ambient 0.1 diffuse 0.3 reflection 0.7 specular 0.8 phong 0.5 brilliance 1 } } rotate x*60 rotate y*220 translate <0.35, -0.55, -0.35> scale <90, 40, 90> no_shadow } fog { fog_type 2 distance 500 color rgb <0.8, 0.6, 0.5> fog_offset 10 fog_alt 30 turbulence 0.3 } plane { y, -40 texture { pigment { color rgbt <0, 0.1, 0.03, 0.7> } finish { reflection 1 ambient 0.5 phong 1 diffuse 0.5 brilliance 1 } normal { ripples 1 scale <20, 10, 20> frequency 10 translate <100, 20, -225> rotate y*60 turbulence 0 } } no_shadow }