Skip to content

Instantly share code, notes, and snippets.

@dmoa
Created March 28, 2020 22:15
Show Gist options
  • Save dmoa/8c31746559dca4053d5ef839e3e42b58 to your computer and use it in GitHub Desktop.
Save dmoa/8c31746559dca4053d5ef839e3e42b58 to your computer and use it in GitHub Desktop.
def lerp(a, b, t)
return a + (b - a) * t
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment