LPRest explanation of what LPRest is and/or does
Inherits from: Object : LPObj : LPEvent
More detailed prose description of LPRest.
See also: Object [some other help files]
Some Important Issues Regarding LPRest (optional)
Explanation of the issues. For more information see Nil and [some other help files].
Creation / Class Methods
*new (duration, tuplet)
Short prose description of method.
duration - Explanation of duration. Default value is nil. Other information.
tuplet - Explanation of tuplet. Default value is nil. Other information.
// inline example
g = LPRest.new;
g.doSomething; // explanation
g.cleanUpMethod;
Accessing Instance and Class Variables
duration_(arg1)
duration
Explanation including the type of duration and a link to its help file.
Default value is nil.
formatDur_(arg1)
formatDur
Explanation including the type of formatDur and a link to its help file.
Default value is nil.
dots_(arg1)
dots
Explanation including the type of dots and a link to its help file.
Default value is nil.
spatial_(arg1)
spatial
Explanation including the type of spatial and a link to its help file.
Default value is nil.
tuplet_(arg1)
tuplet
Explanation including the type of tuplet 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.
initLPRest (argDuration, argTuplet)
Short prose description of method.
argDuration - Explanation of argDuration. Default value is nil. Other information.
argTuplet - Explanation of argTuplet. Default value is nil. Other information.
// inline example
g = LPRest.initLPRest;
g.doSomething; // explanation
g.cleanUpMethod;
outputString (score)
Short prose description of method.
score - Explanation of score. Default value is nil. Other information.
// inline example
g = LPRest.outputString;
g.doSomething; // explanation
g.cleanUpMethod;
useSpatial
Short prose description of method.
// inline example
g = LPRest.useSpatial;
g.doSomething; // explanation
g.cleanUpMethod;
Examples
// what this example does
e = LPRest.new;
e.instanceMethod(someObject);
e.cleanUp;
...