static int clampInt(int value, int min, int max ) { return math.max( min, math.min( max, value ) ); }