Class Glyphe
Represents a glyph in a font texture atlas.
Inherited Members
Namespace: Genesis.Graphics
Assembly: Genesis.dll
Syntax
public class Glyphe
Constructors
Glyphe(char, int, int)
Initializes a new instance of the Glyphe class.
Declaration
public Glyphe(char character, int row, int column)
Parameters
Type | Name | Description |
---|---|---|
char | character | The character associated with the glyph. |
int | row | The row index of the glyph in the texture atlas. |
int | column | The column index of the glyph in the texture atlas. |
Properties
Character
Gets or sets the character associated with the glyph.
Declaration
public char Character { get; set; }
Property Value
Type | Description |
---|---|
char |
Column
Gets or sets the column index of the glyph in the texture atlas.
Declaration
public int Column { get; set; }
Property Value
Type | Description |
---|---|
int |
Row
Gets or sets the row index of the glyph in the texture atlas.
Declaration
public int Row { get; set; }
Property Value
Type | Description |
---|---|
int |