// Last edited on DATE TIME by USER
// Processed by remove-cam-lights
#include "colors.inc"
#include "stones.inc"

  

  

  

background{ color rgb < 0.75, 0.80, 0.85 > }

#declare raio = 2.000;

#declare tinta_A = 
  texture {
    pigment { color rgb < 0.10, 0.80, 1.00 > }
    finish { diffuse 0.8 specular 0.1 roughness 0.005 ambient 0.1 }
  }

#declare tinta_B = 
  texture {
    pigment { color rgb < 1.00, 0.80, 0.10 > }
    finish { diffuse 0.8 specular 0.1 roughness 0.005 ambient 0.1 }
  }

difference{
  sphere {
    < 4.00, 0.00, 0.00 >, 5
    texture { T_Stone10 }
  }
  #declare i = 1;
  #while (i < 8)
  #declare frase = substr("hugo 09", i, 1)
    text{
      ttf "arial.ttf" frase 6, 0
      pigment { White } 
      finish { reflection .25 specular 1 }
      translate <i,0,0>
    }
    #declare i = i+1;
  #end
}

// Original camera parameters:
// #local cam_ctr = <5.0,-0.0,-5.00>
// #local cam_vec = (<5.0,0.0,17.00>-<5.0,-0.0,-5.00>)
// #local cam_sky = z

#include "camlight.inc"
camlight(<5.0,-0.0,-5.00>,<10,10,10>,20.0,z,1.0)