qb64-include/lerp.bm

6 lines
125 B
Text
Raw Normal View History

2022-09-19 01:27:48 +02:00
$if Lerp = undefined then
$let Lerp = defined
2022-03-18 18:33:58 +01:00
Function Lerp (v0, v1, t)
Lerp = (1 - t) * v0 + t * v1
2022-09-19 01:27:48 +02:00
End Function
$end if