Returns a FoscBreathMark.
A breath mark.
| tweaks | Gets tweaks. |
| str | Gets string representation of breath mark. |
Attached to a single note.
a = FoscNote(60, 1/4);
m = FoscBreathMark();
a.attach(m);
a.show;
Attached to notes in a staff.
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65,67,69,71,72], [1/8]));
a[3].attach(FoscBreathMark());
a[7].attach(FoscBreathMark());
a.show;
Breath mark can be tweaked.
a = FoscNote(60, 1/4);
m = FoscBreathMark(tweaks: #[['color', 'blue']]);
a.attach(m);
a.show;
Gets tweaks.
Example
m = FoscBreathMark(tweaks: #[['color', 'blue']]);
m.tweaks.postcs;FoscLilypondTweakManager().prSetState(('color': blue))Gets string representation of breath mark.