Returns a FoscTremolo.
Tremolo (of exactly two notes).
| beamCount | Gets beam count of tremolo. |
| isSlurred | Is true when tremolo is slurred. |
| tweaks | Tweaks are not implemented on tremolo. |
| format | Formats stem tremolo. |
| str | Gets string representation of tremolo. |
With three beams by default.
a = FoscChord([61, 64], 1/4);
m = FoscTremolo();
a.attach(m);
a.show; // ERROR: Message 'prTremoloReattackDuration' not understood.With two beams.
a = FoscChord([61, 64], 1/4);
m = FoscTremolo(beamCount: 2);
a.attach(m);
a.show; // ERROR: Message 'prTremoloReattackDuration' not understood.With slur.
a = FoscChord([61, 64], 1/4);
m = FoscTremolo(isSlurred: true);
a.attach(m);
a.show; // ERROR: Message 'prTremoloReattackDuration' not understood.Gets beam count of tremolo.
Example
m = FoscTremolo();
m.beamCount.postln;3Example
m = FoscTremolo(beamCount: 2);
m.beamCount.postln;2Is true when tremolo is slurred.
Example
m = FoscTremolo(isSlurred: true);
m.isSlurred.postln;trueTweaks are not implemented on tremolo.
The Lilypond \repeat tremolo command refuses tweaks.
Override the Lilypond Beam grob instead.
Formats stem tremolo.
Gets string representation of tremolo.