Struct swash::Metrics[][src]

pub struct Metrics {
Show fields pub units_per_em: u16, pub glyph_count: u16, pub is_monospace: bool, pub has_vertical_metrics: bool, pub ascent: f32, pub descent: f32, pub leading: f32, pub vertical_ascent: f32, pub vertical_descent: f32, pub vertical_leading: f32, pub cap_height: f32, pub x_height: f32, pub average_width: f32, pub max_width: f32, pub underline_offset: f32, pub strikeout_offset: f32, pub stroke_size: f32,
}

Global font metrics.

Fields

units_per_em: u16

Number of font design units per em unit.

glyph_count: u16

Number of glyphs in the font.

is_monospace: bool

True if the font is monospace.

has_vertical_metrics: bool

True if the font provides canonical vertical metrics.

ascent: f32

Distance from the baseline to the top of the alignment box.

descent: f32

Distance from the baseline to the bottom of the alignment box.

leading: f32

Recommended additional spacing between lines.

vertical_ascent: f32

Distance from the vertical center baseline to the right edge of the design space.

vertical_descent: f32

Distance from the vertical center baseline to the left edge of the design space.

vertical_leading: f32

Recommended additional spacing between columns.

cap_height: f32

Distance from the baseline to the top of a typical English capital.

x_height: f32

Distance from the baseline to the top of the lowercase “x” or similar character.

average_width: f32

Average width of all non-zero characters in the font.

max_width: f32

Maximum advance width of all characters in the font.

underline_offset: f32

Recommended distance from the baseline to the top of an underline stroke.

strikeout_offset: f32

Recommended distance from the baseline to the top of a strikeout stroke.

stroke_size: f32

Recommended thickness of an underline or strikeout stroke.

Implementations

impl Metrics[src]

pub fn scale(&self, ppem: f32) -> Self[src]

Creates a new set of metrics scaled for the specified pixels per em unit.

pub fn linear_scale(&self, s: f32) -> Self[src]

Creates a new set of metrics scaled by the specified factor.

Trait Implementations

impl Clone for Metrics[src]

impl Copy for Metrics[src]

impl Debug for Metrics[src]

impl Default for Metrics[src]

Auto Trait Implementations

impl RefUnwindSafe for Metrics

impl Send for Metrics

impl Sync for Metrics

impl Unpin for Metrics

impl UnwindSafe for Metrics

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.