SuperCollider Help -LPKeySig

LPKeySig explanation of what LPKeySig is and/or does


Inherits from: Object : LPObj


More detailed prose description of LPKeySig.


See also: Object [some other help files]


Some Important Issues Regarding LPKeySig (optional)


Explanation of the issues. For more information see Nil and [some other help files].


Creation / Class Methods


*new (tonic, mode)

Short prose description of method.

tonic - Explanation of tonic. Default value is 'c'. Other information.

mode - Explanation of mode. Default value is 'major'. Other information.

// inline example

g = LPKeySig.new;

g.doSomething; // explanation

g.cleanUpMethod;



Accessing Instance and Class Variables

mode_(arg1)

mode

Explanation including the type of mode and a link to its help file.

Default value is nil.

tonic_(arg1)

tonic

Explanation including the type of tonic and a link to its help file.

Default value is nil.

Doing Some Task (optional)


A short bit of prose explaining something about the task.

initLPKeySig

Short prose description of method.

// inline example

g = LPKeySig.initLPKeySig;

g.doSomething; // explanation

g.cleanUpMethod;



sig

Short prose description of method.

// inline example

g = LPKeySig.sig;

g.doSomething; // explanation

g.cleanUpMethod;



Examples


// what this example does

e = LPKeySig.new;

e.instanceMethod(someObject);

e.cleanUp;


...