update README
This commit is contained in:
parent
317925a053
commit
1aa0ed020c
|
@ -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/>
|
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)
|
"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
|
h3. AverageOutput
|
||||||
|
|
||||||
calculates mean average of audio or control rate signal.
|
calculates mean average of audio or control rate signal.
|
||||||
|
|
|
@ -17,7 +17,7 @@ SwitchDelay : UGen {
|
||||||
}
|
}
|
||||||
|
|
||||||
XCut : UGen {
|
XCut : UGen {
|
||||||
*ar { arg inArray, which=0.0, envLength=2000;
|
*ar { arg inArray, which=0.0, envLength=2000, mul=1.0, add=0.0;
|
||||||
^this.multiNewList(['audio', which, envLength, inArray.size] ++ inArray.asArray);
|
^this.multiNewList(['audio', which, envLength, inArray.size] ++ inArray.asArray).madd(mul, add);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue