Skip to content

Instantly share code, notes, and snippets.

@Dobby233Liu
Created March 28, 2026 09:30
Show Gist options
  • Select an option

  • Save Dobby233Liu/ade4b1c4d6f22dee48d08b9409dc4645 to your computer and use it in GitHub Desktop.

Select an option

Save Dobby233Liu/ade4b1c4d6f22dee48d08b9409dc4645 to your computer and use it in GitHub Desktop.
function linearClamp(x) {
return Math.min(Math.max(x, 0), 1);
}
function linearPanToDominoPan(x) {
return Math.round(linearClamp(x) * 126) - 63;
}
function linearVolToDominoVol(x) {
return Math.round(linearClamp(x) * 127);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment