Files

8 lines
124 B
JavaScript
Raw Permalink Normal View History

2026-03-22 03:21:45 +02:00
/**
* @module mumath/lerp
*/
'use strict';
module.exports = function (x, y, a) {
return x * (1.0 - a) + y * a;
};