• Articles
  • API Documentation
Search Results for

    Show / Hide Table of Contents
    • SixLabors.Fonts
      • ColorFontSupport
      • Font
      • FontCollection
      • FontCollectionExtensions
      • FontDescription
      • FontException
      • FontFamily
      • FontFamilyNotFoundException
      • FontMetrics
      • FontRectangle
      • FontStyle
      • Glyph
      • GlyphBounds
      • GlyphColor
      • GlyphMetrics
      • GlyphMissingException
      • GlyphRendererParameters
      • GlyphType
      • HintingMode
      • HorizontalAlignment
      • IColorGlyphRenderer
      • IFontCollection
      • IGlyphDecorationRenderer
      • IGlyphRenderer
      • IGlyphRendererExtensions
      • InvalidFontFileException
      • InvalidFontTableException
      • IReadOnlyFontCollection
      • IReadOnlySystemFontCollection
      • KerningMode
      • LayoutMode
      • MissingFontTableException
      • SystemFonts
      • TextAlignment
      • TextAttributes
      • TextDecorations
      • TextDirection
      • TextJustification
      • TextMeasurer
      • TextOptions
      • TextRenderer
      • TextRun
      • VerticalAlignment
      • WordBreaking
    • SixLabors.Fonts.Tables.AdvancedTypographic
      • FeatureTags
      • GlyphClassDef
      • Tag
    • SixLabors.Fonts.Tables.TrueType
      • TrueTypeGlyphMetrics
    • SixLabors.Fonts.Tables.TrueType.Glyphs
      • GlyphOutline
    • SixLabors.Fonts.Unicode
      • BidiCharacterType
      • BidiClass
      • BidiPairedBracketType
      • CodePoint
      • GraphemeClusterClass
      • JoiningClass
      • JoiningGroup
      • JoiningType
      • LineBreakClass
      • MemoryExtensions
      • ScriptClass
      • SpanCodePointEnumerator
      • SpanGraphemeEnumerator
    • SixLabors.Fonts.WellKnownIds
      • KnownNameIds

    Struct GlyphOutline

    Represents the outline of a glyph.

    Inherited Members
    ValueType.Equals(Object)
    ValueType.GetHashCode()
    ValueType.ToString()
    Object.Equals(Object, Object)
    Object.GetType()
    Object.ReferenceEquals(Object, Object)
    Namespace: SixLabors.Fonts.Tables.TrueType.Glyphs
    Assembly: SixLabors.Fonts.dll
    Syntax
    public readonly struct GlyphOutline

    Constructors

    | Improve this Doc View Source

    GlyphOutline(Vector2[], UInt16[], Boolean[])

    Initializes a new instance of the GlyphOutline struct.

    Declaration
    public GlyphOutline(Vector2[] controlPoints, ushort[] endPoints, bool[] onCurves)
    Parameters
    Type Name Description
    Vector2[] controlPoints

    The vectorial points defining the shape of this glyph.

    UInt16[] endPoints

    The point indices for the last point of each contour, in increasing numeric order.

    Boolean[] onCurves

    Value indicating whether the corresponding ControlPoints item is on a curve

    Properties

    | Improve this Doc View Source

    ControlPoints

    Gets the vectorial points defining the shape of this glyph.

    Declaration
    public readonly ReadOnlyMemory<Vector2> ControlPoints { get; }
    Property Value
    Type Description
    ReadOnlyMemory<Vector2>
    | Improve this Doc View Source

    EndPoints

    Gets the point indices for the last point of each contour, in increasing numeric order.

    Declaration
    public readonly ReadOnlyMemory<ushort> EndPoints { get; }
    Property Value
    Type Description
    ReadOnlyMemory<UInt16>
    | Improve this Doc View Source

    OnCurves

    Gets at value indicating whether the corresponding ControlPoints item is on a curve.

    Declaration
    public readonly ReadOnlyMemory<bool> OnCurves { get; }
    Property Value
    Type Description
    ReadOnlyMemory<Boolean>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX