int clamp(int min, int max) { if (this < min) { return min; } else if (this > max) { return max; } else { return this; } }