Struct sfl_parser::BMCharacter
[−]
[src]
pub struct BMCharacter {
pub id: u32,
pub x: u32,
pub y: u32,
pub width: u32,
pub height: u32,
pub xoffset: u32,
pub yoffset: u32,
pub xadvance: u32,
}Represents a single character in the bitmap font atlas. Contains coordinates, sizes, offsets and advances (everything required to render letters from the atlas).
Fields
id: u32
char id of the character.
x: u32
x-position of the character on the atlas.
y: u32
y-position of the character on the atlas.
width: u32
Width of the character on the atlas.
height: u32
Height of the character.
xoffset: u32
x-offset of the character.
yoffset: u32
y-offset of the character.
xadvance: u32
x-advance of the character.