//-----------------------------------------------------------------------------------------------------------
#include "shapes.inc"
//-----------------------------------------------------------------------------------------------------------
object{Circle_Text_Valigned(
          "arial.ttf", "POV-Ray", // Font, Text,
           0.35,  0.0005, 0.35,  // Letter_Size, Letter_Spacing, Deepth,
           1.00,     1,         // Radius, Inverted,
           Align_Left, // Justification: either Align_Left, Align_Right, or Align_Center
           50,        // Circle angle
          -95 )      // Valign:  Rotates vertical objects. -90 = right side up, 90 = upside-down, 0 = horzontal.

        texture{ pigment{ color rgb<0.87,0.75,1.0>  }
                 // normal { bumps 0.5 scale 0.005}
                 finish { specular 1 reflection { 0.15 metallic 0.25} }
               } // end of texture
        rotate<90,140,0>
        scale<1,2,1>*1
        translate<0.0,0.5,0>
      } // end of "Circle_Text_Valigned" object  ------------------------------------------------------------
//-----------------------------------------------------------------------------------------------------------
