projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
111e2717d5a2aa663781f6b6ba2e35c270798174
[platform/framework/web/crosswalk-tizen.git]
/
1
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
module.exports = lerp;
11