26b99d048c59b5375ea0cb40787f0527869c9d00
[platform/framework/web/crosswalk-tizen.git] /
1 define(function(){
2     /**
3     * Linear interpolation.
4     * IMPORTANT:will return `Infinity` if numbers overflow Number.MAX_VALUE
5     */
6     function lerp(ratio, start, end){
7         return start + (end - start) * ratio;
8     }
9
10     return lerp;
11 });