// TIME / Time in a Legend '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 <20, 40, -55> look_at <0, 0, 0> angle 140 } #declare Intensity = 8; light_source { <60, 300, 226> color rgb <0.6, 1, 1> * Intensity spotlight point_at <-60, -50, 120> radius 20 falloff 50 tightness 15 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.3 diffuse 0.3 reflection 0.5 specular 0.8 phong 0.5 brilliance 1 } } rotate x*60 rotate y*-120 scale <100, 100, 100> no_shadow } fog { fog_type 2 distance 100 color rgb <0.5, 0.8, 1> fog_offset -2 fog_alt 15 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, 5, 20> frequency 10 rotate y*240 translate z*125 turbulence 0.1 } } no_shadow }