stevenkhan's picture
Upload spectral-font/src/lib.rs
97399bd verified
//! Spectral Font — Font loading, MSDF atlas generation, and metrics.
pub mod atlas;
pub mod font;
pub mod metrics;
pub mod msdf;
pub use atlas::{Atlas, AtlasSlot, GlyphAtlas, GlyphKey};
pub use font::{Font, FontFamily, FontStyle};
pub use metrics::FontMetrics;