getKerning

abstract fun getKerning(first: Int, second: Int): Kerning?

Fetches the Kerning between two codepoints.

Return

the kerning between the two codepoints if it exists; otherwise null

Parameters

first

the first codepoint of a character

second

the second codepoint of a character


open fun getKerning(first: Char, second: Char): Kerning?

Fetches the Kerning between two characters.

Return

the kerning between the two codepoints if it exists; otherwise null

Parameters

first

the first character

second

the second character