GetGlyphAtlasRec method
Get glyph rectangle in font atlas for a codepoint (unicode character), fallback to '?' if not found
Implementation
RectangleD GetGlyphAtlasRec(
FontD font,
num codepoint,
) => run(
() => _debugLabels.GetGlyphAtlasRec(font, codepoint),
() => _flat.GetGlyphAtlasRec(
font,
codepoint.toInt(),
),
);