#include "shapes.inc" // needed for Center_Object
    #include "colors.inc"
    
    Center_Object(
      Center_Object(
        text {
          ttf "/usr/share/fonts/truetype/freefont/FreeSans.ttf" "test" 0, 0
          pigment { Black }
          scale <10,10,10>
        }
        x
      )
      y
    )
    
    sky_sphere {
      pigment { White }
    }
    
    camera {
       location  <0.0, 0.0,   -25>
       up        <0.0, 1.0,   0.0>
       right     <2, 0.0,   0.0>
       look_at   <0.0, 0.0,   0.0>
    }
    
    light_source { <0, 0, -2000> color White }
    
