SuperCollider Help -Soundscape

Soundscape explanation of what Soundscape is and/or does


Inherits from: Object


More detailed prose description of Soundscape.


See also: Object [some other help files]


Some Important Issues Regarding Soundscape (optional)


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


Creation / Class Methods


*new (geoListener)

Short prose description of method.

geoListener - Explanation of geoListener. Default value is nil. Other information.

// inline example

g = Soundscape.new;

g.doSomething; // explanation

g.cleanUpMethod;



Accessing Instance and Class Variables

sampleplaying_(arg1)

sampleplaying

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

Default value is nil.

server_(arg1)

server

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

Default value is nil.

ns_(arg1)

ns

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

Default value is nil.

geoListener_(arg1)

geoListener

Explanation including the type of geoListener 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.

initSoundscape (aGeoListener)

Short prose description of method.

aGeoListener - Explanation of aGeoListener. Default value is nil. Other information.

// inline example

g = Soundscape.initSoundscape;

g.doSomething; // explanation

g.cleanUpMethod;



update (theChanged, theChanger, more)

Short prose description of method.

theChanged - Explanation of theChanged. Default value is nil. Other information.

theChanger - Explanation of theChanger. Default value is nil. Other information.

more - Explanation of more. Default value is nil. Other information.

// inline example

g = Soundscape.update;

g.doSomething; // explanation

g.cleanUpMethod;



initAudio

Short prose description of method.

// inline example

g = Soundscape.initAudio;

g.doSomething; // explanation

g.cleanUpMethod;



sendDef

Short prose description of method.

// inline example

g = Soundscape.sendDef;

g.doSomething; // explanation

g.cleanUpMethod;



play (more)

Short prose description of method.

more - Explanation of more. Default value is nil. Other information.

// inline example

g = Soundscape.play;

g.doSomething; // explanation

g.cleanUpMethod;



modifplay (more)

Short prose description of method.

more - Explanation of more. Default value is nil. Other information.

// inline example

g = Soundscape.modifplay;

g.doSomething; // explanation

g.cleanUpMethod;



Examples


// what this example does

e = Soundscape.new;

e.instanceMethod(someObject);

e.cleanUp;


...