static int rgbInt(int r, int g, int b) { ret (clamp(r, 0, 255) << 16) | (clamp(g, 0, 255) << 8) | clamp(b, 0, 255); } static int rgbInt(byte r, byte g, byte b) { ret (ubyteToInt(r) << 16) | (ubyteToInt(g) << 8) | ubyteToInt(b); }