From 967755595bceecc6dae671930ae346a14840d928 Mon Sep 17 00:00:00 2001 From: Zhe Deng <42720670+thezhe@users.noreply.github.com> Date: Wed, 22 Dec 2021 15:59:56 -0500 Subject: [PATCH] change LadderLfpS cutoff limits --- include/VA.soul | 8 ++------ tests/effect.soul | 5 +---- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/include/VA.soul b/include/VA.soul index a603092..9e8cb20 100644 --- a/include/VA.soul +++ b/include/VA.soul @@ -33,8 +33,6 @@ */ /** Task List - Test: - - min buffer size Future Tasks: - add updateSample to snippets @@ -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 @@ -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 ]]; } @@ -654,8 +652,6 @@ Filter Processors 12/21/21 } } } - - /** Modified version of https://soul.dev/lab/?id=Delay diff --git a/tests/effect.soul b/tests/effect.soul index eb9fa3d..ac174f3 100644 --- a/tests/effect.soul +++ b/tests/effect.soul @@ -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;