Returns a hairpin.
Attaches hairpin indicators to leaves in selection.
[ ]
Example
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0..].hairpin('p < f');
a.show;
Example
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0..].hairpin('< f');
a.format;\new Voice {
c'4
\<
d'4
e'4
f'4
\f
}Example
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0..].hairpin('f >o !');
a.show;
a.format;\new Voice {
c'4
\f
- \tweak circled-tip ##t
\>
d'4
e'4
f'4
\!
}Example
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0..].hairpin('p > !');
a.show;
a.format;\new Voice {
c'4
\p
\>
d'4
e'4
f'4
\!
}Hairpin can be tweaked. Note that tweaks effects the hairpin only, and not the dynamics.
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0..].hairpin('sfz > p', tweaks: #[['color', 'blue']]);
a.show;