List of utility methods to do Number Clamp
Number.prototype.clamp = function(min,max) var c = this; if(c < min) c = min; if(c > max) c = max; return c; }; ...