I’m working on trying to setup a Mod Frequency control that skews the range to make it more usable, but setting the skew value to something that sounds good leads to there being a visible “jump” between the first and second values along the slider as opposed to a smooth movement throughout. I understand the idea is to take the exponentially increasing frequency values and applying a base2 logarithm, but I’m not sure how to use the skew value to do that. Any suggestions greatly appreciated!
auto mod_rate = std::make_unique<juce::AudioParameterFloat>
(
juce::ParameterID
{
"mod_rate",
8
},
"Mod Rate",
juce::NormalisableRange<float>(0.1f, 25.0f, 0.01f, 0.3f), // Changed from 0.1f to 0.01f
0.005f
);