Interface Stop

Represents a single fingering, either stopping or touching the string with one finger.

interface Stop {
    naturalHarmonic: boolean;
    noteNumber: number;
    stopIndex: number;
    stringIndex: number;
}

Hierarchy (view full)

Properties

naturalHarmonic: boolean

Is it touch fingering?

noteNumber: number

The MIDI note number (middle C = 60)

stopIndex: number

The stepIndex (number of semitones over the open string)

stringIndex: number

The string index in the instrument (0 = first string, etc.)