{
textStrings.add(textString = new TextString());
previousTextChar = null;
}
TextStyle textStyle = rawTextString.getStyle();
float spaceWidth = 0;
try
{spaceWidth = textStyle.getFont().getWidth(' ', textStyle.getFontSize());}
catch(Exception e)
{ /* NOOP */ }
if(spaceWidth == 0)
{spaceWidth = textStyle.getFontSize() * .25f;} // NOTE: as a rule of thumb, space width is estimated according to the font size.
for(TextChar textChar : rawTextString.getTextChars())
{
if(previousTextChar != null)
{
/*