GetKerning() публичный Метод

Get the kerning offset between two glyphs
public GetKerning ( uint first, uint second, uint characterSize ) : float
first uint Unicode code point of the first character
second uint Unicode code point of the second character
characterSize uint Character size
Результат float
Пример #1
0
 /// <summary>
 /// Get the kerning offset between two glyphs
 /// </summary>
 /// <param name="first">Unicode code point of the first character</param>
 /// <param name="second">Unicode code point of the second character</param>
 /// <param name="characterSize">Character size</param>
 /// <returns>Kerning offset, in pixels</returns>
 public float GetKerning(uint first, uint second, uint characterSize)
 {
     return(SFMLFont.GetKerning(first, second, characterSize));
 }