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

char id of the character.

x-position of the character on the atlas.

y-position of the character on the atlas.

Width of the character on the atlas.

Height of the character.

x-offset of the character.

y-offset of the character.

x-advance of the character.

Trait Implementations

impl Debug for BMCharacter
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for BMCharacter

impl Sync for BMCharacter