// (C) 2004 by Rafal Maj Raf256 http://www.raf256.com/3d/pov/ // "He" A-00123 camera { blur_samples 999 translate -z*10 rotate 45 aperture .03 } global_settings { radiosity { count 999 } } #macro A(T,C) sphere { T 1 pigment { rgb 1+C } } #end A(x-y,z) A(z-1x) // short cut for A(-x-y, x) with means A( <-1,-1,0> , red ) A(x+y,x) A(-x+y,z) union { A(x*8z+x) // electrons // A(-x*8z+x) // this one is not visible in field-of-view, so it had been removed from final entry torus{8 .3} // electrons orbite pigment{granite} finish{ambient 7} // <-- this is lighting the scene (togeather with default finish ambient of atoms) rotate 85 }