Struct GlyphMetrics
Per-glyph positioning metrics in pixels, computed during rasterization.
public readonly record struct GlyphMetrics : IEquatable<GlyphMetrics>
- Implements
- Inherited Members
Constructors
GlyphMetrics(int, int, int, int, int)
Per-glyph positioning metrics in pixels, computed during rasterization.
public GlyphMetrics(int BearingX, int BearingY, int Advance, int Width, int Height)
Parameters
Properties
Advance
public int Advance { get; init; }
Property Value
BearingX
public int BearingX { get; init; }
Property Value
BearingY
public int BearingY { get; init; }
Property Value
Height
public int Height { get; init; }
Property Value
Width
public int Width { get; init; }