background{ color rgb <1,1,1> } light_source { < -100.00, 100.00, -100.00 > color rgb < 1, 1, 1 > } camera { location < .5, 0, -2.5 > look_at < .5, 0, 0 > } #declare bola = sphere { < 0.00, 0.00, 0.00 >, .7 pigment { rgb <0,0,1> } } #declare textoH = text { ttf "timrom.ttf" "H" .3, 0 pigment { rgb <1,1,0> } } #declare texto2 = text { ttf "timrom.ttf" "2" .3, 0 pigment { rgb <1,1,0> } } #declare textoO = text { ttf "timrom.ttf" "O" .3, 0 pigment { rgb <1,1,0> } } union { object { bola translate <0,.6,.7> } object { textoH translate <-.9,0,0> } object { texto2 translate <-.2,-.4,0> scale <.9,.9,.9> } object { textoO translate <+.3,0,0> } rotate <0,0,degrees(sin(6.283185*clock))> translate scale <.8,.8,.8> }