/c7

Playing with sounds

Primary LanguageJavaScript

c7+

https://dl.dropboxusercontent.com/u/43674030/c7%2B/index.html

Learning how to do audio in Javascript and experimenting with some design principles:

  • Instance vars must be declared in the constructor
  • Other instance vars (i.e. memoizing) should be this._asdf
  • No global variables with state
  • Only constant global variables
  • Most computation will be done through stateless functions
  • Use Backbone.Events to communicate with parent