// ECLIPSE / Eclipsed Sphere Spaced '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, 600, -50> look_at <0, -0.5, 0> angle 1.6 } light_source {<-1200, 500, -1000> color rgb <1, 1, 1>} #declare fn_Pigm = function { pigment { crackle turbulence 0.6 color_map { [0 color rgb 1] [0.7 color rgb 0] } scale 1.2 } } intersection { sphere {<0, 0, 0> 6 inverse} isosurface { function {(y-280*fn_Pigm(x, y, z).gray*0.32/(x*x+z*z+20))*(y+20)+2} threshold 50 max_gradient 80 contained_by {box {<-10, -7, -10> <10, 8, 10>} } } texture { pigment {color rgbt <0.1, 0.3, 1, 0.9>} finish { ambient 0.3 diffuse 1 reflection 0.9 specular 1 phong 0.6 brilliance 1 } } scale <1, 1, 1> rotate <180, 60, 0> no_shadow }