// ECLIPSE / Eclipsed Box Blue '09.07 // By Tsutomu HIGO URL: http://www.asahi-net.or.jp/~nj2t-hg/ #version 3.6; global_settings { max_trace_level 5 assumed_gamma 2.2 } camera { location <1, 10, -10> look_at <0, -2, 0> angle 50 } light_source {<-20, 50, -25> color rgb <0.3, 0.6, 1>} #declare fn_Pigm = function { pigment { crackle turbulence 0.5 color_map { [0 color rgb 1] [0.7 color rgb 0] } scale 2 } } intersection { sphere {<0, 0, 0> 4.5 inverse} isosurface { function {(y-180*fn_Pigm(x, y, z).gray*0.32/(x*x+z*z+60))*(y+50)+2} threshold 5 max_gradient 100 contained_by {box {<-8, -5, -5> <8, 5, 5>} } } texture { pigment {color rgbt <1, 0.8, 0, 0.9>} finish { ambient 0.3 diffuse 1 reflection 0.5 specular 1 phong 0.3 brilliance 1 } } scale <1, 1, 1> rotate <0, -85, 0> no_shadow }