Show / Hide Table of Contents

Struct GlyphInfo

A struct for saving character information needed for processing a font.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Fusee.Base.Common
Assembly: Fusee.Base.Common.dll
Syntax
public struct GlyphInfo

Fields

AdvanceX

The amount to advance the pen horizontally when drawing this glyph.

Declaration
public float AdvanceX
Field Value
Type Description
System.Single

AdvanceY

The amount to advance the pen vertically when drawing this glyph. Typically 0 for western fonts/script systems.

Declaration
public float AdvanceY
Field Value
Type Description
System.Single

CharCode

The unicode character code this information is for.

Declaration
public uint CharCode
Field Value
Type Description
System.UInt32

Height

The height of this glyph.

Declaration
public float Height
Field Value
Type Description
System.Single

Width

The width of this glyph.

Declaration
public float Width
Field Value
Type Description
System.Single
Generated by DocFX
GitHub Repo
Back to top