three-text-geometry
    Preparing search index...

    Interface TextGlyph

    The interface to define text glyph.

    TextGlyph

    interface TextGlyph {
        data: BMFontChar;
        index: number;
        line: number;
        position: [number, number];
    }
    Index

    Properties

    Properties

    BMFontChar data held by glyphs.

    TextGlyph

    index: number

    The index of glyphs.

    TextGlyph

    line: number

    The line to which Griff belongs.

    TextGlyph

    position: [number, number]

    The start and end position of the glyph.

    TextGlyph