[][src]Struct fontdue::FontSettings

pub struct FontSettings {
    pub enable_offset_bounding_box: bool,
    pub collection_index: u32,
    pub scale: f32,
}

Settings for controlling specific font and layout behavior.

Fields

enable_offset_bounding_box: bool

The default is true. This offsets glyphs relative to their position in their scaled bounding box. This is required for laying out glyphs correctly, but can be disabled to make some incorrect fonts crisper.

collection_index: u32

The default is 0. The index of the font to use if parsing a font collection.

scale: f32

The default is 40. The scale in px the font geometry is optimized for. Fonts rendered at the scale defined here will be the most optimal in terms of looks and performance. Glyphs rendered smaller than this scale will look the same but perform slightly worse, while glyphs rendered larger than this will looks worse but perform slightly better.

Trait Implementations

impl Clone for FontSettings[src]

impl Copy for FontSettings[src]

impl Default for FontSettings[src]

impl PartialEq<FontSettings> for FontSettings[src]

impl StructuralPartialEq for FontSettings[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.