1 2 3 4 5 6 7 8 9 10
use crate::{HorizontalMetrics, Outline}; use makepad_geometry::Rectangle; /// A glyph in a font. #[derive(Clone, Debug, PartialEq)] pub struct Glyph { pub horizontal_metrics: HorizontalMetrics, pub bounds: Rectangle, pub outline: Outline, }