FoscTie

Returns a FoscTie.


Description

Attach a tie.


Attributes Summary

Instance Properties

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.

Instance Methods: Special Methods

== !!!TODO
asCompileString !!!TODO
hash !!!TODO


Instance Properties


context

Gets context. Returns Voice.

  1. Example

    a = FoscTie();
    a.context.postln;
    'Voice'


direction

Gets direction. Defaults to none.

Returns up, down or none.

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


persistent

Is true.

  1. Example

    a = FoscTie();
    a.persistent.postln;
    true


rightBroken

Is true when tie is right-broken.

  1. Example

    a = FoscTie();
    a.rightBroken.postln;
    false


tweaks

Gets tweaks.

  1. Example

    a = FoscTie();
    a.tweaks.postcs;


Instance Methods: Special Methods


==

!!!TODO

Is true when all initialization values of Abjad value object equal the initialization values of argument.


asCompileString

!!!TODO

Gets interpreter representation.


hash

!!!TODO

Hashes Abjad value object.