/////////////////////////////////////////////////////////////////////////////// // // // (C) Carlos Tricas 2003 // // // // carlos.tricas@mundosimaginados.com // // // // www.mundosimaginados.com // // // /////////////////////////////////////////////////////////////////////////////// // // // Fichero: selec18.POV // // // // Nombre: ACUERDO // // // // 01/03 // // // /////////////////////////////////////////////////////////////////////////////// #include "colors.inc" background {rgb <0.1,0.5,0.8>} camera { location <1,2,-20> look_at <0, 0,0> angle 92 } light_source { <5,5,-30> White } blob { #declare n = 360; #while (n) #declare altura =3*cos(n/360*2*pi*9); cylinder{ <0, 9 + altura, 0>, <0, 9.5+altura, 0> ,.8 1 rotate x*n*7 rotate z*n*5 rotate y*n*3 pigment {rgb <1.0, .5, .5>} finish {phong .2} } #declare n=n-.05; #end no_shadow }