lerp

bare-bones linear interpolation function

Usage no npm install needed!

<script type="module">
  import lerp from 'https://cdn.skypack.dev/lerp';
</script>

README

lerp

Build Status frozen

In the fashion of small modules and saving keystrokes; this is a bare-bones linear interpolation function. Same as mix in GLSL.

var lerp = require('lerp')

var res = lerp(a, b, t);

Usage

NPM

lerp(start, end, alpha)

Interpolates from start to end using the given alpha.

License

MIT, see LICENSE.md for details.