Click or drag to resize
Ab4d.SharpEngine logo

VectorFontFactory Class

Inheritance Hierarchy
SystemObject
  Ab4d.SharpEngine.UtilitiesVectorFontFactory

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public class VectorFontFactory

The VectorFontFactory type exposes the following members.

Constructors
 NameDescription
Public methodVectorFontFactory Constructor. The specified fontName must be loaded by using TrueTypeFontLoader.
Top
Properties
 NameDescription
Public propertyBezierCurveSegmentsCount Gets or sets a number that specifies into how many segments (individual straight lines) each bezier curve from the character glyph is converted. Smaller values produce smaller meshes or less outline positions (are faster to render), bigger values produce more accurate fonts but are slower to render. This value can be changed before any call that generates the mesh or outline positions. Default value is 8.
Public propertyCharSpacing Gets or sets amount of additional space between characters. The value is specified in EM units (1 is glyph height). Default value is 0 that does not add any additional space. This value can be negative to create more condensed text or positive to increase the gaps between characters. Changing this value will change only the newly generated text and not the already generated text.
Public propertyFontName Gets the font name that is used by this VectorFontFactory.
Public propertyFontStretch Gets or sets the amount of horizontal font stretch. The default value 1 (100%) does not stretch the font. Changing this value will change only the newly generated text and not the already generated text.
Public propertyLineHeight Gets or sets the line height that is used by this VectorFontFactory. The value is specified in EM units (1 is glyph height). Changing this value will change only the newly generated text and not the already generated text. Default value is 1.0f.
Public propertySpaceSize Gets or sets the width of the space character that is used by this VectorFontFactory. The value is specified in EM units (1 is glyph size). Changing this value will change only the newly generated text and not the already generated text. Default value is 0.333f.
Public propertyTabSize Gets or sets the tab size (how many spaces are used to represent one tab) that is used by this VectorFontFactory. Changing this value will change only the newly generated text and not the already generated text. Default value is 4.
Top
Methods
 NameDescription
Public methodStatic memberBezierInterpolate 
Public methodCreateIndividualTextMeshes CreateIndividualTextMeshes creates StandardMesh objects for each character from the specified text.
Public methodCreateIndividualTextOutlinePositions CreateIndividualTextOutlinePositions generates 2D outline positions for the specified text. The returned list contains tuples with the following values: index of the character in the text, the character and the outline positions. Note that each character can have multiple Vector2 array, that means that multiple items in the returned list can be created from a single character. The coordinate axis (0, 0) starts at the baseline of the first character.
Public methodCreateTextMesh CreateTextMesh creates a StandardMesh with the specified text and at the specified position, direction and size. The text is represented by one StandardMesh that is created from triangulated character glyphs.
Public methodCreateTextOutlinePositions Returns an array of Vector3 arrays that define outline positions for the specified text.
Public methodGetBoundingRectangle Returns the start or top-left position (as Vector3) and size (as Vector2) of the rectangle that contains the specified text.
Public methodGetTextSize Returns the size of the specified text.
Top
See Also