6 lines
No EOL
125 B
Text
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 |