qb64-include/lerp.bm
visionmercer 0741413c93 a start
2022-03-18 18:33:58 +01:00

3 lines
No EOL
71 B
Text

Function Lerp (v0, v1, t)
Lerp = (1 - t) * v0 + t * v1
End Function