java lerp

Java
float lerp(float point1, float point2, float alpha){    return point1 + alpha * (point2 - point1);}
Source

Also in Java: