Struct pango::GlyphGeometry
source · #[repr(transparent)]pub struct GlyphGeometry { /* private fields */ }
Expand description
The GlyphGeometry
structure contains width and positioning
information for a single glyph.
Note that @width is not guaranteed to be the same as the glyph extents. Kerning and other positioning applied during shaping will affect both the @width and the @x_offset for the glyphs in the glyph string that results from shaping.
The information in this struct is intended for rendering the glyphs, as follows:
- Assume the current point is (x, y)
- Render the current glyph at (x + x_offset, y + y_offset),
- Advance the current point to (x + width, y)
- Render the next glyph
Implementations§
Trait Implementations§
source§impl Clone for GlyphGeometry
impl Clone for GlyphGeometry
source§impl Debug for GlyphGeometry
impl Debug for GlyphGeometry
impl Copy for GlyphGeometry
Auto Trait Implementations§
impl RefUnwindSafe for GlyphGeometry
impl Send for GlyphGeometry
impl Sync for GlyphGeometry
impl Unpin for GlyphGeometry
impl UnwindSafe for GlyphGeometry
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