We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've approximated the volume converters... I think, including them may come in handy for someone
int_vol(vol){ ; mixer -> internal if vol < 0.5 Return 0 Return Min(Max(0.05030509 * exp(ln(vol) * 1.649729), 0) 100) } mix_vol(vol){ ; internal -> mixer if vol < 0.07 ; ~ 0.5 in the mixer scale Return 0 Return Min(Max(6.12394 * exp(ln(vol) * 0.6061601632753016), 0) 100) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've approximated the volume converters...
I think, including them may come in handy for someone
The text was updated successfully, but these errors were encountered: