Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions source/BlackrainUGens/sc/HelpSource/Classes/BMoog.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ table::
::
defaults to lowpass.

argument::saturation

Examples::

Expand All @@ -44,7 +45,8 @@ z = {
MouseY.kr(1.0, 0.0, \linear), // q
0, // mode - lowpass
0.25); // mul
}.play)
}.play
)
z.release;

(
Expand All @@ -57,7 +59,8 @@ z = {
MouseY.kr(1,0,\linear),
0); // filter mode - lowpass
(CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5);
}.play)
}.play
)
z.release

(
Expand All @@ -70,7 +73,8 @@ z = {
MouseY.kr(1,0,\linear),
1); // filter mode - highpass
(CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5);
}.play)
}.play
)
z.release

(
Expand All @@ -83,7 +87,8 @@ z = {
MouseY.kr(1,0,\linear),
2); // filter mode - bandpass
(CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5);
}.play)
}.play
)
z.release

(
Expand All @@ -96,10 +101,11 @@ z = {
MouseY.kr(1,0,\linear),
LFSaw.kr(1,0,3)); // filter mode - sweep modes
(CombN.ar(sig, 0.4, [0.4,0.35],2) * 0.4) + (sig * 0.5);
}.play)
}.play
)
z.release

// bhob's benchmark ;)
// bhob's benchmark
(
z = {
var sig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ LPCAnalyzer.ar(input,source, 64,MouseX.kr(1,64), windowtype:1)

//////////////////////////////////////

//residual test assumes windowtype 0)
//residual test assumes windowtype 0:
(
{
var input,source;
Expand Down