// Last edited on 2001-07-30 16:33:36 by stolfi

// Para fazer 3 ciclos complatos [stolfi]
#declare myclock = 6.0*clock;
#declare LightBlue = color rgb <0.6,0.6,1.0>;

#include "colors.inc"
  camera {
    location 1.5*<-6, 3, -20>
    look_at <1,1,0>
    angle 20
  }
  light_source { <500,500,-1000> 1.5*White }


#declare bola=
             sphere { <-3.0, 1.00, 2.0>,2.23
                        pigment { LightBlue }
                 translate < 2*myclock, abs(sin(3*myclock))*1/(myclock+1), 0.00 >
                translate < 0.00, abs(sin(3*myclock))*1/(myclock+1), 0.00 >
                        
}
#declare texto1 =
  text { ttf "gothic.ttf" "NEW POVVY" 0.2, 0
    pigment { Yellow } 
    translate <0,0,-1>  
  }

#declare objeto =
  union
  {
   object {bola}
   object {texto1}
}

#declare texto2 =
  text { ttf "latinwd.ttf" "Version 2001." 0.21, 0
    pigment { Gold }
     translate (-1*myclock)*x
     translate -1*y
    
  }

union
{
 object { texto2 }
 object { objeto }
 
           }