pub trait OutlineBuilder {
    type Error: Error;

    fn visit<S: OutlineSink>(
        &mut self,
        glyph_index: u16,
        sink: &mut S
    ) -> Result<(), Self::Error>; }
Expand description

Trait for visiting a glyph outline and delivering drawing commands to an OutlineSink.

Required Associated Types

Required Methods

Visit the glyph outlines in self.

Implementors