update README

This commit is contained in:
rob 2009-01-09 23:12:53 +00:00
parent 317925a053
commit 1aa0ed020c
2 changed files with 6 additions and 2 deletions

View File

@ -5,6 +5,10 @@ h3. SwitchDelay
feedback delay line implementing switch-and-ramp technique. Seeks to avoid unwanted artefacts when switching the buffer read position/delay time.<br/>
"example - mp3":http://rfwatson.github.com/switchdelay.mp3 (832k)
h3. XCut
select one from an array of signals, when index changed ramps smoothly between old and new signals
h3. AverageOutput
calculates mean average of audio or control rate signal.

View File

@ -17,7 +17,7 @@ SwitchDelay : UGen {
}
XCut : UGen {
*ar { arg inArray, which=0.0, envLength=2000;
^this.multiNewList(['audio', which, envLength, inArray.size] ++ inArray.asArray);
*ar { arg inArray, which=0.0, envLength=2000, mul=1.0, add=0.0;
^this.multiNewList(['audio', which, envLength, inArray.size] ++ inArray.asArray).madd(mul, add);
}
}