var Linear = function (p0, p1, t){ return (p1 - p0) * t + p0; } ; module.exports = Linear;