Skip to content

Instantly share code, notes, and snippets.

@Pandan
Created December 21, 2018 15:14
Show Gist options
  • Save Pandan/a2d1a5f24b762eb565196522f4700b8d to your computer and use it in GitHub Desktop.
Save Pandan/a2d1a5f24b762eb565196522f4700b8d to your computer and use it in GitHub Desktop.
static norm(value, min, max) {
return (value - min) / (max - min);
}
static lerp(norm, min, max) {
return ((max - min) * norm) + min;
}
static map(value, sourceMin, sourceMax, destMin, destMax) {
return this.lerp(this.norm(value, sourceMin, sourceMax), destMin, destMax);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment