@litecanvas/utils
Version:
Utilities to help build litecanvas games
20 lines (17 loc) • 439 B
JavaScript
/**
* Calculates the linear interpolation of two angles (in degrees).
*
* @param {number} start from angle
* @param {number} end to angle
* @param {number} amount usually a value between 0.0 and 1.0
* @returns {number} the interpolated value
*/
export default (start, end, amount) => {
let dif = (end - start) % 360
if (dif > 180) {
dif -= 360
} else if (dif < -180) {
dif += 360
}
return start + dif * amount
}