UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

12 lines 301 B
export function unwrapAngleDelta(raw, prevRaw) { const halfTurn = 180; let delta = raw - prevRaw; if (delta > halfTurn) { delta -= halfTurn * 2; } else if (delta < -halfTurn) { delta += halfTurn * 2; } return delta; } //# sourceMappingURL=unwrapAngle.js.map