RPE Chart Utils
    Preparing search index...

    Interface NotePosition

    The computed position of a note.

    interface NotePosition {
        localX: number;
        localY: number;
        sceneX: number;
        sceneY: number;
        dist: number;
        chartDist: number;
    }
    Index

    Properties

    localX: number

    X position relative to the line (in scene pixels).

    localY: number

    Y position relative to the line (in scene pixels).

    sceneX: number

    Absolute X position in scene space.

    sceneY: number

    Absolute Y position in scene space.

    dist: number

    The raw distance from the line (in scene pixels).

    chartDist: number

    The chart-space distance (used for control evaluation).