Skip to content

Commit

Permalink
Change lowpassHz upper bound
Browse files Browse the repository at this point in the history
  • Loading branch information
ryukau committed Aug 27, 2023
1 parent adffc84 commit 300e48a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SerialCombCymbal/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const scales = {
highpassHz: new parameter.MidiPitchScale(
util.freqToMidiPitch(1), util.freqToMidiPitch(48000), true),
lowpassHz: new parameter.MidiPitchScale(
util.freqToMidiPitch(10), util.freqToMidiPitch(48000), false),
util.freqToMidiPitch(10), util.freqToMidiPitch(1000000), false),
filterQ: new parameter.LinearScale(0.01, Math.SQRT1_2),
};

Expand Down

0 comments on commit 300e48a

Please sign in to comment.