lerpChannel method

int lerpChannel(
  1. int a,
  2. int b,
  3. double t
)

Implementation

int lerpChannel(int a, int b, double t) {
  return lerpDouble(a, b, t)!.round();
}