Lerp deux valeurs

function lerp(a,b,t) {
	return a * (1-t) + b * t
}
Tomas Maillo