Returns a FoscTie.
Attach a tie.
| context | Gets context. Returns Voice. |
| direction | Gets direction. Defaults to none. |
| persistent | Is true. |
| rightBroken | Is true when tie is right-broken. |
| tweaks | Gets tweaks. |
| == | !!!TODO |
| asCompileString | !!!TODO |
| hash | !!!TODO |
Gets context. Returns Voice.
Example
a = FoscTie();
a.context.postln;'Voice'Gets direction. Defaults to none.
Returns up, down or none.
Force ties up.
a = FoscStaff(FoscLeafMaker().(60 ! 4, [1/8]));
m = FoscTie(direction: 'up');
a[0..].attach(m); // FIXME: ERROR: Object:assert
a.show;
m.direction;Force ties down.
a = FoscStaff(FoscLeafMaker().(60 ! 4, [1/8]));
m = FoscTie(direction: 'down');
a[0..].attach(m); // FIXME: ERROR: Object:assert
a.show;
m.direction;Is true.
Example
a = FoscTie();
a.persistent.postln;trueIs true when tie is right-broken.
Example
a = FoscTie();
a.rightBroken.postln;falseGets tweaks.
Example
a = FoscTie();
a.tweaks.postcs;!!!TODO
Is true when all initialization values of Abjad value object equal the initialization values of argument.
!!!TODO
Gets interpreter representation.
!!!TODO
Hashes Abjad value object.