Struct AtlasGroupBuilder.GroupSource
One tagged glyph-rect source to be packed as part of a shared group.
public readonly record struct AtlasGroupBuilder.GroupSource : IEquatable<AtlasGroupBuilder.GroupSource>
- Implements
- Inherited Members
Constructors
GroupSource(string, IReadOnlyList<GlyphRect>)
One tagged glyph-rect source to be packed as part of a shared group.
public GroupSource(string Tag, IReadOnlyList<GlyphRect> Rects)
Parameters
TagstringIdentifies this source when splitting placements back out.
RectsIReadOnlyList<GlyphRect>This source's glyph rects, with their original (un-mangled) ids.
Properties
Rects
This source's glyph rects, with their original (un-mangled) ids.
public IReadOnlyList<GlyphRect> Rects { get; init; }
Property Value
Tag
Identifies this source when splitting placements back out.
public string Tag { get; init; }