mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 04:23:30 +00:00
7 lines
96 B
JavaScript
7 lines
96 B
JavaScript
|
var Linear = function (p0, p1, t)
|
||
|
{
|
||
|
return (p1 - p0) * t + p0;
|
||
|
};
|
||
|
|
||
|
module.exports = Linear;
|