Two Tones

Basic amplitude modulation

//This shows how to use maximilian to do basic amplitude modulation
var mySine = new maximJs.maxiOsc();
var myOtherSine = new maximJs.maxiOsc();

function play(){
 	// these two sines will beat together. They're now a bit too loud though.
 	output = mySine.sinewave(440+(myOtherSine.sinewave(1)*100));
 	
 }