Struct Spacing
- Namespace
- KernSmith
- Assembly
- KernSmith.dll
Gap between glyphs in the atlas, in pixels.
public readonly record struct Spacing : IEquatable<Spacing>
- Implements
- Inherited Members
Constructors
Spacing(int)
Same spacing in both directions.
public Spacing(int both)
Parameters
bothint
Spacing(int, int)
Gap between glyphs in the atlas, in pixels.
public Spacing(int Horizontal, int Vertical)
Parameters
Properties
Horizontal
public int Horizontal { get; init; }
Property Value
Vertical
public int Vertical { get; init; }
Property Value
Zero
No spacing in either direction.
public static Spacing Zero { get; }