Returns a FoscFermata.
A fermata.
| command | Gets command. |
| context | Gets context. |
| tweaks | Gets tweaks. |
| str | Gets string representation of breath mark. |
A short fermata.
a = FoscScore([FoscStaff([FoscNote(60, 1/4)])]);
m = FoscFermata('shortfermata');
a[0][0].attach(m);
a.show;
A regular fermata.
a = FoscScore([FoscStaff([FoscNote(60, 1/4)])]);
m = FoscFermata();
a[0][0].attach(m);
a.show;
A long fermata.
a = FoscScore([FoscStaff([FoscNote(60, 1/4)])]);
m = FoscFermata('longfermata');
a[0][0].attach(m);
a.show;
A very long fermata.
a = FoscScore([FoscStaff([FoscNote(60, 1/4)])]);
m = FoscFermata('verylongfermata');
a[0][0].attach(m);
a.show;
Fermata can be tweaked.
a = FoscScore([FoscStaff([FoscNote(60, 1/4)])]);
m = FoscFermata('longfermata', tweaks: #[['color', 'blue']]);
a[0][0].attach(m);
a.show;
Gets command.
Example
m = FoscFermata('longfermata');
m.command.postln;'longfermata'Gets context.
Example
m = FoscFermata('longfermata');
m.context.postln;'Score'Gets tweaks.
Example
m = FoscFermata(tweaks: #[['color', 'blue']]);
m.tweaks.postcs;FoscLilypondTweakManager().prSetState(('color': blue))Gets string representation of breath mark.
Example
m = FoscFermata('longfermata');
m.str;\longfermata