/////////////////////////////////////////////////////////////////////////////// // // // (C) Carlos Tricas 2003 // // // // carlos.tricas@mundosimaginados.com // // // // www.mundosimaginados.com // // // /////////////////////////////////////////////////////////////////////////////// // // // Fichero: selec19.POV // // // // Nombre: ORACION // // // // 01/03 // // // /////////////////////////////////////////////////////////////////////////////// #include "colors.inc" background {Gold} camera { perspective location <2,2,-20> look_at <0,1,0> angle 55 } light_source { < 0,20,-50> White } blob { #declare n= 360; #while (n) cylinder{ <0,-1,-0> <0,1,-0> .3 1 rotate x*n*3.5 translate 6*y+y*sin(n/360*2*pi*8)/3 rotate z*n rotate x*2*n rotate y*3*n+y*4*3 pigment {Turquoise} } #declare n=n-360/(360*4); #end no_shadow }