Skip to content
This repository has been archived by the owner on Aug 17, 2024. It is now read-only.

Commit

Permalink
change LadderLfpS cutoff limits
Browse files Browse the repository at this point in the history
  • Loading branch information
thezhe committed Dec 22, 2021
1 parent 89d39a8 commit 9677555
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
8 changes: 2 additions & 6 deletions include/VA.soul
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@
*/

/** Task List
Test:
- min buffer size

Future Tasks:
- add updateSample to snippets
Expand Down Expand Up @@ -225,7 +223,7 @@ VA::HighLevel Processors 12/22/21
} //namespace HighLevel

/*==============================================================================
Filter Processors 12/21/21
Filter Processors 12/22/21
==============================================================================*/

/** Ladder Low Pass Filter with variable order and saturating state
Expand All @@ -245,7 +243,7 @@ Filter Processors 12/21/21

input
{
smoothedParameter0.in0 cutoffIn [[ name: "Cutoff", min: 5000, max: 10000, init: initialCutoff, unit: "Hz", step: 1 ]];
smoothedParameter0.in0 cutoffIn [[ name: "Cutoff", min: 6000, max: 10000, init: initialCutoff, unit: "Hz", step: 1 ]];
smoothedParameter1.in0 resonanceIn [[ name: "Resonance", min: 0, max: 1, init: initialResonance, step: 0.01f ]];
smoothedParameter2.in0 nonlinearityIn [[ name: "Nonlinearity", min: 0, max: 3.5f, init: initialNonlinearity, step: 0.01f ]];
}
Expand Down Expand Up @@ -654,8 +652,6 @@ Filter Processors 12/21/21
}
}
}



/** Modified version of https://soul.dev/lab/?id=Delay

Expand Down
5 changes: 1 addition & 4 deletions tests/effect.soul
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,12 @@ namespace main
input
{
//expose effect event endpoints
effect.stereoLinkIn;
effect.nonlinearityIn;
effect.volumeIn;
}

let
{
//define effect as a 'Processor' from 'VA::HighLevel'
effect = VA::HighLevel::OnepoleC_Lan::Processor (200);
effect = VA::HighLevel::ChorusLadderLpfS::Processor (0, 0, 0, 6000, 1, 3.5f, 100, 0);

//comment out for stereo
up = FloatToSampleType::Processor;
Expand Down

0 comments on commit 9677555

Please sign in to comment.