Searched defs:LERP (Results 1 – 3 of 3) sorted by relevance
384 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) ) macro
53 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) ) macro
1253 #define LERP(n, t, c0, c1) (((n) - (t)) * (c0) + (t) * (c1) + (n) / 2) / (n) macro