FoscBreathMark

Returns a FoscBreathMark.


Description

A breath mark.


Attributes Summary

Instance Properties

tweaks Gets tweaks.

Instance Methods: Special Methods

str Gets string representation of breath mark.


Usage

  1. Attached to a single note.

    a = FoscNote(60, 1/4);
    m = FoscBreathMark();
    a.attach(m);
    a.show;

  2. 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;

  3. Breath mark can be tweaked.

    a = FoscNote(60, 1/4);
    m = FoscBreathMark(tweaks: #[['color', 'blue']]);
    a.attach(m);
    a.show;


Instance Properties


tweaks

Gets tweaks.

  1. Example

    m = FoscBreathMark(tweaks: #[['color', 'blue']]);
    m.tweaks.postcs;
    FoscLilypondTweakManager().prSetState(('color': blue))


Instance Methods: Special Methods


str

Gets string representation of breath mark.