Returns a FoscBendAfter.
A fall or doit.
| bendAmount | Gets amount of bend after. |
| tweaks | Gets tweaks. |
| str | Gets string representation of bend after. |
A fall.
a = FoscNote(60, 1/4);
m = FoscBendAfter(-4);
a.attach(m);
a.show;
A doit
a = FoscNote(60, 1/4);
m = FoscBendAfter(2);
a.attach(m);
a.show;
Bend can be tweaked.
a = FoscNote(60, 1/4);
m = FoscBendAfter(-4, tweaks: #[['color', 'blue']]);
a.attach(m);
a.show;
Gets amount of bend after.
Example
a = FoscBendAfter(-4);
a.bendAmount.postln;-4.0Gets tweaks.
Example
m = FoscBendAfter(-4);
tweak(m).color = 'blue';
m.tweaks.postcs;FoscLilypondTweakManager().prSetState(('color': blue))Gets string representation of bend after.
Example
a = FoscBendAfter(-4);
a.str;- \bendAfter #'-4.0