qb64-include/lerp.bm
2022-09-19 01:27:48 +02:00

6 lines
No EOL
125 B
Text

$if Lerp = undefined then
$let Lerp = defined
Function Lerp (v0, v1, t)
Lerp = (1 - t) * v0 + t * v1
End Function
$end if