Returns a FoscDynamicTrend.
A dynamic trend.
| context | Gets context. Returns Voice. |
| leftBroken | Is true when dynamic trend formats with left broken tag. |
| shape | Gets shape. Returns string. |
| spannerStart | Is true. |
| tweaks | Gets tweaks. |
Example
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0].attach(FoscDynamic('p'));
a[0].attach(FoscDynamicTrend('<'));
a[a.lastIndex].attach(FoscDynamic('f'));
a.show;
Set leftBroken to true to initialize without starting dynamic.
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0].attach(FoscDynamicTrend('<', leftBroken: true));
a[a.lastIndex].attach(FoscDynamic('f'));
a.show;
Crescendo dal niente.
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0].attach(FoscDynamic('niente', hide: true));
a[0].attach(FoscDynamicTrend('o<'));
a[a.lastIndex].attach(FoscDynamic('f'));
a.show;
Decrescendo al niente.
FIXME: ERROR: Message name not understood.
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0].attach(FoscDynamic('f'));
a[0].attach(FoscDynamicTrend('>o'));
a[a.lastIndex].attach(FoscDynamic('niente', command: "\\!"));
a.show;!!!TODO: abjad-flared-hairpin NOT IMPLEMENTED
Subito crescendo.
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0].attach(FoscDynamic('p'));
a[0].attach(FoscDynamicTrend('<|'));
a[a.lastIndex].attach(FoscDynamic('f'));
a.show;
!!!TODO: BROKEN. #constante-hairpin not implemented ??
Constante.
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0].attach(FoscDynamic('p'));
a[0].attach(FoscDynamicTrend('--'));
a[a.lastIndex].attach(FoscDynamic('f'));
a.show;
DynamicTrend can be tweaked.
a = FoscVoice(FoscLeafMaker().(#[60,62,64,65], 1/4));
a[0].attach(FoscDynamic('p'));
a[0].attach(FoscDynamicTrend('<', tweaks: #[['color', 'blue']]));
a[a.lastIndex].attach(FoscDynamic('f'));
a.show;
Gets context. Returns Voice.
Example
m = FoscDynamicTrend('<');
m.context.postcs;'Voice'Is true when dynamic trend formats with left broken tag.
Example
m = FoscDynamicTrend('<', leftBroken: true);
m.leftBroken.postln;trueGets shape. Returns string.
Example
m = FoscDynamicTrend('<');
m.shape.postcs;<Is true.
Example
m = FoscDynamicTrend('<');
m.spannerStart.postln;trueGets tweaks.
Example
a = FoscDynamicTrend('<', tweaks: #[['color', 'blue']]);
a.tweaks.postcs;FoscLilypondTweakManager().prSetState(('color': blue))