Is this C code:
/* LERP(a,b,c) = linear interpolation macro, is \'a\' when c == 0.0 and \'b\' when c == 1.0 */ #define LERP(a,b,c) (((b) - (a)) * (c) + (a))