glissando

Returns a glissando.


Description

A glissando

[ ]


Usage

  1. Example

    a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], [1/8]));
    a[0..].glissando;
    a.show;

  2. With stems set to true.

    a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], [1/8]));
    a[0..].glissando(stems: true);
    a.show;

  3. Glissandos can be tweaked.

    a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], [1/8]));
    a[0..].glissando(stems: true, tweaks: #[['thickness', 4], ['color', 'red']]);
    a.show;