blob: 9fd6057a20db0ada4ef4e558e38725591e2f36f9 [file] [log] [blame]
/// Clamp [x] to [a] [b]
int clamp(int x, int a, int b) => x.clamp(a, b).toInt();
/// Clamp [x] to [0, 255]
int clamp255(int x) => x.clamp(0, 255).toInt();