List of utility methods to do Number Normalize
Math.norm = function(value, min, max) { return (value - min) / (max - min); };