Struct sfl_parser::BMCharacter [] [src]

pub struct BMCharacter {
    pub id: i32,
    pub x: i32,
    pub y: i32,
    pub width: i32,
    pub height: i32,
    pub xoffset: i32,
    pub yoffset: i32,
    pub xadvance: i32,
}

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