pub struct GlyphData {
pub codepoint: char,
pub advance_width: f32,
pub bounds: (f32, f32, f32, f32),
pub atlas_uv: Option<(f32, f32, f32, f32)>,
pub outline: Vec<OutlineCommand>,
}Expand description
Geometry and metrics for a single glyph.
Fields§
§codepoint: charUnicode codepoint.
advance_width: f32Advance width (how far the cursor moves after this glyph).
bounds: (f32, f32, f32, f32)Bounding box: (min_x, min_y, max_x, max_y) in font units.
atlas_uv: Option<(f32, f32, f32, f32)>UV coordinates in the atlas texture (if packed).
outline: Vec<OutlineCommand>Raw outline commands (simplified path, optional).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GlyphData
impl RefUnwindSafe for GlyphData
impl Send for GlyphData
impl Sync for GlyphData
impl Unpin for GlyphData
impl UnsafeUnpin for GlyphData
impl UnwindSafe for GlyphData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more