CartoonModel explanation of what CartoonModel is and/or does
Inherits from: Object : Soundscape
More detailed prose description of CartoonModel.
See also: Object [some other help files]
Some Important Issues Regarding CartoonModel (optional)
Explanation of the issues. For more information see Nil and [some other help files].
Creation / Class Methods
Accessing Instance and Class Variables
bufDict_(arg1)
bufDict
Explanation including the type of bufDict and a link to its help file.
Default value is nil.
samplesPath_(arg1)
samplesPath
Explanation including the type of samplesPath 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.
initAudio (aSamplesPath, nameList, ext)
Short prose description of method.
aSamplesPath - Explanation of aSamplesPath. Default value is nil. Other information.
nameList - Explanation of nameList. Default value is nil. Other information.
ext - Explanation of ext. Default value is "wav". Other information.
// inline example
g = CartoonModel.initAudio;
g.doSomething; // explanation
g.cleanUpMethod;
sendDef
Short prose description of method.
// inline example
g = CartoonModel.sendDef;
g.doSomething; // explanation
g.cleanUpMethod;
play (message)
Short prose description of method.
message - Explanation of message. Default value is nil. Other information.
// inline example
g = CartoonModel.play;
g.doSomething; // explanation
g.cleanUpMethod;
modifplay (message)
Short prose description of method.
message - Explanation of message. Default value is nil. Other information.
// inline example
g = CartoonModel.modifplay;
g.doSomething; // explanation
g.cleanUpMethod;
Examples
// what this example does
e = CartoonModel.new;
e.instanceMethod(someObject);
e.cleanUp;
...