[][src]Struct cat_engine::text::Glyphs

pub struct Glyphs { /* fields omitted */ }

Шрифт.

Font.

Implementations

impl Glyphs[src]

pub fn load<P: AsRef<Path>>(path: P) -> Glyphs[src]

Загрузка шрифта из файла.

Loading font from file.

pub fn character(&self, character: char, font_size: f32) -> Character[src]

Возвращает символ, определённого размера, с нулейвой позицией.

Returns a character with given size and zero position.

pub fn character_positioned(
    &self,
    character: char,
    font_size: f32,
    position: [f32; 2]
) -> Character
[src]

Символ, определённого размера с определённой позицией.

Returns a character with given size and position.

Auto Trait Implementations

impl RefUnwindSafe for Glyphs

impl Send for Glyphs

impl Sync for Glyphs

impl Unpin for Glyphs

impl UnwindSafe for Glyphs

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SetParameter for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.