OpenSheetMusicDisplay
    Preparing search index...

    Interface TremoloBetweenNotes

    A tremolo between two notes, e.g. two alternating half notes with 3 strokes ("tremolo beams") between them, often seen in orchestral string parts. ( and type="stop" in MusicXML) Note that for these tremolos, each note is notated with the full duration of the tremolo, but only played for half of it (e.g. notated two half notes = tremolo over one half note duration), so Note.TypeLength is twice the Note.Length here. The strokes are drawn in VexFlowMusicSheetDrawer.drawTremolosBetweenNotes().

    interface TremoloBetweenNotes {
        startNote: Note;
        stopNote: Note;
        strokes: number;
    }
    Index

    Properties

    startNote: Note

    The first/left note of the tremolo.

    stopNote: Note

    The second/right note of the tremolo. Undefined until the stop note is read.

    strokes: number

    Number of strokes ("tremolo beams") drawn between the two notes.