ASCIIGround - v1.1.2
    Preparing search index...

    Interface RenderRegion

    Rendering region that may extend beyond the visible area for complex effects.

    This interface provides complete information about the rendering context, including dimensions, spacing, and boundaries. Some effects may render outside the visible area for blur, particle systems, or edge effects.

    interface RenderRegion {
        rows: number;
        columns: number;
        startRow: number;
        endRow: number;
        startColumn: number;
        endColumn: number;
        charWidth: number;
        charHeight: number;
        charSpacingX: number;
        charSpacingY: number;
        canvasWidth: number;
        canvasHeight: number;
    }
    Index

    Properties

    rows: number

    Number of character rows in the grid

    columns: number

    Number of character columns in the grid

    startRow: number

    Starting row index (may be negative for extended regions)

    endRow: number

    Ending row index (may exceed visible area)

    startColumn: number

    Starting column index (may be negative for extended regions)

    endColumn: number

    Ending column index (may exceed visible area)

    charWidth: number

    Width of each character in pixels

    charHeight: number

    Height of each character in pixels

    charSpacingX: number

    Horizontal spacing between characters

    charSpacingY: number

    Vertical spacing between characters

    canvasWidth: number

    Total canvas width in pixels

    canvasHeight: number

    Total canvas height in pixels