[][src]Struct ab_glyph::OutlinedGlyph

pub struct OutlinedGlyph { /* fields omitted */ }

A glyph that has been outlined at a scale & position.

Implementations

impl OutlinedGlyph[src]

pub fn new(glyph: Glyph, outline: Outline, scale_factor: PxScaleFactor) -> Self[src]

Constructs an OutlinedGlyph from the source Glyph, pixel bounds & relatively positioned outline curves.

pub fn glyph(&self) -> &Glyph[src]

Glyph info.

pub fn px_bounds(&self) -> Rect[src]

Conservative whole number pixel bounding box for this glyph.

pub fn draw<O: FnMut(u32, u32, f32)>(&self, o: O)[src]

Draw this glyph outline using a pixel & coverage handling function.

The callback will be called for each (x, y) pixel coordinate inside the bounds with a coverage value in the range [0.0, 1.0] indicating how much the glyph covered that pixel.

Trait Implementations

impl AsRef<Glyph> for OutlinedGlyph[src]

impl Clone for OutlinedGlyph[src]

impl Debug for OutlinedGlyph[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.