Sha256: cb6dc5e34f3814a8696f0b3b1b8cf300138e436ef214341e71b394d77859d57d
Contents?: true
Size: 250 Bytes
Versions: 69
Compression:
Stored size: 250 Bytes
Contents
define(function(){ /** * Linear interpolation. * IMPORTANT:will return `Infinity` if numbers overflow Number.MAX_VALUE */ function lerp(ratio, start, end){ return start + (end - start) * ratio; } return lerp; });
Version data entries
69 entries across 69 versions & 2 rubygems