// STRING / Sphere Shape String '06.06 // by Tsutomu HIGO http://www.asahi-net.or.jp/~nj2t-hg/ #version 3.6; global_settings { max_trace_level 6 assumed_gamma 2.2 } camera { location <80, 40, -60> angle 90 look_at <2, -1, 0> } light_source { <50, 100, -1000> color rgb <1, 1, 1> } isosurface { function { pow(x-pow(36-y*y,0.5)*cos(pi*y*y/2),2) +pow(z-pow(36-y*y,0.5)*sin(pi*y*y/2),2)-0.04 } contained_by { box { <-6.2, -5.99, -6.2> <6.2, 5.99, 6.2> } } accuracy 0.01 max_gradient 300 rotate y*180 scale 10 texture { pigment {color rgb <1, 0.8, 0.8> } } finish { ambient 0.4 diffuse 0.3 reflection 1 specular 0.8 phong 0.5 brilliance 1 } no_shadow rotate y*40 } background { color rgb <0.001, 0.01, 0.05> }