pub struct LayoutGlyph {
Show 14 fields pub start: usize, pub end: usize, pub font_size: f32, pub font_id: ID, pub glyph_id: u16, pub x: f32, pub y: f32, pub w: f32, pub level: Level, pub x_offset: f32, pub y_offset: f32, pub color_opt: Option<Color>, pub metadata: usize, pub cache_key_flags: CacheKeyFlags,
}
Expand description

A laid out glyph

Fields§

§start: usize

Start index of cluster in original line

§end: usize

End index of cluster in original line

§font_size: f32

Font size of the glyph

§font_id: ID

Font id of the glyph

§glyph_id: u16

Font id of the glyph

§x: f32

X offset of hitbox

§y: f32

Y offset of hitbox

§w: f32

Width of hitbox

§level: Level

Unicode BiDi embedding level, character is left-to-right if level is divisible by 2

§x_offset: f32

X offset in line

If you are dealing with physical coordinates, use Self::physical to obtain a PhysicalGlyph for rendering.

This offset is useful when you are dealing with logical units and you do not care or cannot guarantee pixel grid alignment. For instance, when you want to use the glyphs for vectorial text, apply linear transformations to the layout, etc.

§y_offset: f32

Y offset in line

If you are dealing with physical coordinates, use Self::physical to obtain a PhysicalGlyph for rendering.

This offset is useful when you are dealing with logical units and you do not care or cannot guarantee pixel grid alignment. For instance, when you want to use the glyphs for vectorial text, apply linear transformations to the layout, etc.

§color_opt: Option<Color>

Optional color override

§metadata: usize

Metadata from Attrs

§cache_key_flags: CacheKeyFlags

Implementations§

source§

impl LayoutGlyph

source

pub fn physical(&self, offset: (f32, f32), scale: f32) -> PhysicalGlyph

Trait Implementations§

source§

impl Clone for LayoutGlyph

source§

fn clone(&self) -> LayoutGlyph

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LayoutGlyph

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.