UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

12 lines (10 loc) 250 B
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; });