// Persistence of Vision Ray Tracer Scene Description File // File: Kiss.pov // Vers: 3.6 // Desc: A Kiss // Date: 11/24/2006 // Auth: Gerardo Perez camera { location y right x*1.3 look_at 0 } light_source { y 1 } background { 1 } #local A = 0.2618; #local R = 0.083; union{ #local E = 0; #while ( E < 24 ) #local L = E * A; #local P = < cos(L), sin(L), tan(L) >; sphere{ R * P, R texture{ pigment{ color rgb P } } } #local E = E + 1; #end rotate -90*z }