Example #1
0
scigraphics::wcoord scigraphics::drawer::textWidth( const std::string &Text, const textStyle &Style )       
{ 
  return Text.length() * Style.getFontSize(); 
}
Example #2
0
scigraphics::wcoord scigraphics::drawer::textHeight( const std::string &Text, const textStyle &Style )
{ 
  return Style.getFontSize() * numOfLinesInString(Text); 
}
Example #3
0
scigraphics::wcoord scigraphics::legend::interTextVerticalDistance( const textStyle &Style ) 
{ 
  return std::max<wcoord>( Style.getFontSize()/3, 2 ); 
}