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

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Except for this change, I don't think we need the rest of this PR anymore, since the help browser code selection was fixed, what do you think?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I don’t think so. Please see my comments on each change.


Examples::

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

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR corrects the incorrect placement of a closing parenthesis.

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
)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR corrects the incorrect placement of a closing parenthesis.

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
)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR corrects the incorrect placement of a closing parenthesis.

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
)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR corrects the incorrect placement of a closing parenthesis.

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
)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR corrects the incorrect placement of a closing parenthesis.

z.release

// bhob's benchmark ;)
// bhob's benchmark

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be preserved now.

(
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:

@prko prko Jul 7, 2026

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why should the closing parenthesis be placed here?

(
{
var input,source;
Expand Down